* {
  margin: 0;
  padding: 0;

}

.regsection {
  background: url("../images/RegistrationBg.png");
  background-size: cover;
  min-height: 100vh;
}

.maincontainer {
  min-height: 100vh;
  width: 100%;
  display: flex;
  position: relative;
}

.logo {
  position: absolute;
  top: 17px;
  left: 30px;
}

.logo img {
  width: 172px !important;
  height: 64px !important;
}

.imageConatiner {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageConatiner img {
  width: 400px;
  height: 450px;
}

.formCoantiner {
  flex: 1;
  padding: 20px;
  position: relative;
}

.formCoantiner form>div {
  display: flex;
  flex-direction: column;

}

form {
  background-color: white;
  padding: 20px 30px;
  margin-top: 60px;
  border-radius: 1rem;
}

.row {
  margin-right: 5px !important;
}

form input, form select {
  height: 35px;
  border-radius: 10px;
  border: .5px solid #ddd;
  background-color: white;
  padding: 0px 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 13px;
}

form label {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 13px;
}

input[type="file"] {
  font-size: 12px;
  padding: 6px 31px 2px 6px
}

input[type=file]::file-selector-button {
  border: 1px solid #4980FF;
  border-radius: .3rem;
  background-color: #E8EFFF;
  transition: 1s;
  color: #4980FF;
}

select option {
  width: 50px;
  border-radius: 1rem;
  background-color: #E8EFFF;
}

form .borderLine {
  height: 1px;
  background-color: #B6B6B6;
  margin: 15px 10px;
}

.formCoantiner .btnConatiner {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: end;
}

.formCoantiner .btnConatiner button:nth-child(1) {
  width: 95px;
  margin-right: 20px;
}

.formCoantiner .btnConatiner button:nth-child(2) {
  width: 250px;
  margin-right: 20px;
  background-color: #4980FF;
  border: 1px solid #4980FF;
}

.formCoantiner h1 {
  color: #AF0B64;
  position: absolute;
  top: 22px;
  left: 25px;
  font-size: 36px;

}

footer {
  font-size: 10px;
  /* color: #AF0B64; */
  color:black;
  font-weight: 600;
  margin-left: 10px;
}

/* MATERIALS */
.materialConatiner {}

.materialConatiner header {
  display: flex;
  justify-content: space-between;
  background-color: white;
  -webkit-box-shadow: 4px 4px 9px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 4px 4px 9px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 4px 4px 9px -2px rgba(0, 0, 0, 0.75);
  margin: 25px 20px 20px 20px;
  padding: 5px;
  border-radius: 10px;
}

.logoConatiner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoConatiner img {
  width: 172px;
  height: 64px;
}

.titleConatiner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profileContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.titleConatiner h5 {
  color: #4980FF;
  font-size: 18px;
  font-weight: 600;
}

.profileContainer p {
  margin-right: 5px;

}

.materialTableConatiner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 4px 4px 9px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 4px 4px 9px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 4px 4px 9px -2px rgba(0, 0, 0, 0.75);
  margin: 25px 20px 20px 20px;
  padding: 10px;
  border-radius: 10px;
}

.materialCard {

  border: 1px solid #B6B6B6;
  border-radius: 10px;
  padding: 16px 4px 0px 5px;
  width: 300px;
  height: 185px;
  margin: 10px;
  position: relative;
}

.iconCoantiner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cardTextConatiner {
  margin-top: 25px;
  margin-left: 15px;
}

.cardTextConatiner h5 {
  font-size: 12px;
  font-weight: 700;

}

.cardTextConatiner p {
  font-size: 10px;
  font-weight: 400;
}

.cardTextConatiner p img {
  margin-right: 5px;
}

.materialCard button {
  border: none;
  background-color: transparent;
  outline: none;
  position: absolute;
  top: 1px;
  right: 10px;
}

.error{
  color: red;
}

.loader {
  position: fixed;
  bottom: 0px;
  left: 0px;
  top: 0px;
  right: 0px;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 100000000;
  background: rgba(0, 0, 0, 0.4);
}
.loader img, .loaderSelect img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media only screen and (max-width: 500px) {
  .maincontainer {

    display: flex;
    flex-direction: column;
  }

  .row {
    margin-right: 0px !important;
  }

}