* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
input{
  outline: none;
}
.loginConatiner {
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
}
.loginConatiner .imgSection {
  width: 50%;
  /* background: url("./images/Login background.png"); */
  background: url("./images/5.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 7%;
}
.loginConatiner .imgSection .imgConatiner {
  width: 100%;
  height: 100%;
  position: relative;
}
.loginConatiner .imgSection .imgConatiner .imgLock {
  position: absolute;
  top: 13%;
  right: 10%;
  width: 100px;
  height: 100px;
  -webkit-animation: LockAni 5s infinite;
          animation: LockAni 5s infinite;
}
.loginConatiner .imgSection .imgConatiner .imgLock img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.loginConatiner .imgSection .imgConatiner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.loginConatiner .formSection {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loginConatiner .formSection form {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loginConatiner .formSection form .logoImg {
  height: 38px;
  overflow: hidden;
}
.loginConatiner .formSection form .logoImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.loginConatiner .formSection form .welcmHeading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5% 0 10% 0;
}
.loginConatiner .formSection form .welcmHeading h1 {
  font-weight: 700;
  font-size: 30px;
  color: #4980ff;
  margin-bottom: 2%;
}
.loginConatiner .formSection form .welcmHeading small {
  font-weight: 400;
  font-size: 14px;
  color: #434343;
}
.loginConatiner .formSection form .inputSection {
  width: 100%;
}
.loginConatiner .formSection form .inputSection div {
  position: relative;
}
.loginConatiner .formSection form .inputSection div input {
  width: 100%;
  padding: 2% 10%;
  margin: 2% 0;
 
  border: 0.02rem solid rgba(115, 111, 111, 0.1176470588);
  border-radius: 0.4rem;
  outline: none !important;
  
  
}
.loginConatiner .formSection form .inputSection div input:hover {
  /* border: 0.02rem solid rgba(115, 111, 111, 0.4509803922); */
}
.loginConatiner .formSection form .inputSection div input:focus {
  /* background: red; */
}
.loginConatiner .formSection form .inputSection div img {
  position: absolute;
  top: 20%;
  left: 3%;
}
.loginConatiner .formSection form .inputSection button {
  margin: 3% 0;
  width: 100%;
  padding: 2% 0;
  background: #4980ff;
  border-radius: 0.4rem;
  font-weight: 400;
  font-size: 14px;
  border: none;
  color: #ffffff;
  letter-spacing: 0.05rem;
  transition: 0.2s ease-in;
  outline:none;
}
.loginConatiner .formSection form .inputSection button:hover {
  cursor: pointer;
  background: #1149ca;
  /* transform: translateY(-5px); */
  /* box-shadow: 0px 9px 0px 0px rgba(73, 128, 255, 0.4039215686); */
}
.loginConatiner .formSection form .forgotSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2%;
}
.loginConatiner .formSection form .forgotSection a {
  font-weight: 400;
  font-size: 14px;
  color: #4980ff;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.loginConatiner .formSection form .forgotSection a:hover {
  cursor: pointer;
  color: #426ac9;
  text-decoration: underline;
}
.loginConatiner .formSection form .forgotSection button {
  border: 0.03rem solid #4980ff;
  border-radius: 0.4rem;
  padding: 1.5% 10px;
  color: #4980ff;
  background: transparent;
  font-size: 12px;
  transition: 0.2s ease-in-out;
}
.loginConatiner .formSection form .forgotSection button:hover {
  cursor: pointer;
  background-color: #4980ff;
  color: white;
}
.modelBtnsubmit{
  /* padding: 2% 0;*/
  height: 30px;
  width: 30%;
  background: #4980ff;
  border-radius: 0.4rem;
  font-weight: 400;
  font-size: 14px;
  border: none;
  color: #ffffff;
  letter-spacing: 0.05rem;
}
.modelCancel{
  height: 30px;
  width: 30%;
  border: 0.03rem solid #4980ff;
  background: transparent;
  border-radius: 0.4rem;
  font-weight: 400;
  font-size: 14px;
  border: none;
  color: #4980ff;
  letter-spacing: 0.05rem;
}
.admission{
  /* background-color:red ; */
}
input:-internal-autofill-selected{
  background-color: transparent !important;
}
.error{
  color:red;
  font-size: 12px;
}

.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 (max-width: 780px) {
  .loginConatiner .imgSection {
    display: none;
  }
  .loginConatiner .formSection {
    width: 100%;
  }
  .loginConatiner .formSection form {
    width: 80%;
  }
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #989898;
  font-size: 11px;
  letter-spacing: 0.2px;
}

::-moz-placeholder {
  color: #989898;
  font-size: 11px;
  letter-spacing: 0.2px;
}

::placeholder {
  color: #989898;
  font-size: 11px;
  letter-spacing: 0.2px;
}

@-webkit-keyframes LockAni {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(-15px);
  }
}

@keyframes LockAni {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(-15px);
  }
}/*# sourceMappingURL=style.css.map */