*{
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  font-family: "Lexend", sans-serif;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.logo{
  display: flex;
  align-items: center;
  justify-content: center;
}
.tittle{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0px 60px 0px 0px;
}
.logo h1{
  font-size: 3rem;
  font-weight: 700;
  color: #01497c;
}
.logo p{
  color: #01497cd0;
}
.logo img{
  width: 150px;
  height: 150px;
}
.login-form{
  box-shadow: 0px 0px 2px 2px rgba(199, 199, 199, 0.326);
  border-radius: 15px;
  width: 350px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  margin-top: -20px;
}
.heading h2{
  font-size: 32px;
  font-weight: normal;
  padding: 10px 10px 10px 0px;
  margin-bottom: 10px;
  color: #01497c;
}
.email,.password{
  display: flex;
  flex-direction: column;
}
.labelError label{
  color: #01497cd0;
  font-size: 14px;
  font-weight: normal;
}
.password i{
  position: relative;
  top: -40px;
  left: 250px;
  font-size: 12px;
  color: #01497cd0;
}
.email input,.password input{
  padding: 10px;
  margin: 15px 15px 15px 0px;
  border: 1px solid #63637f;
  border-radius: 5px;
  width: 280px;
  color: #01497cd0;
}
.email input:focus,.email input:active,.password input:focus,.password input:active{
  border: 1.5px solid #01497c;
  outline: none;
}
::placeholder{
  opacity: .9;
}
.rememberMeContainer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 15px 0 0;
}

/* Hide the default checkbox */
.rememberLabel input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
 
.rememberLabel {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  user-select: none;
}

span{
  margin-left: 5px;
  color: #01497c !important;
  font-weight: normal !important;
}
 
/* Create a custom checkbox */
.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background-color: #ccc;
  transition: all 0.3s;
  border-radius: 5px;
}
 
/* When the checkbox is checked, add a blue background */
.rememberLabel input:checked ~ .checkmark {
  background-color: #01497c;
  animation: pop 0.5s;
  animation-direction: alternate;
}
 
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
 
/* Show the checkmark when checked */
.rememberLabel input:checked ~ .checkmark:after {
  display: block;
}
 
/* Style the checkmark/indicator */
.rememberLabel .checkmark:after {
  left: 0.45em;
  top: 0.25em;
  width: 0.25em;
  height: 0.5em;
  border: solid white;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}
 
@keyframes pop {
  0% {
    transform: scale(1);
  }
 
  50% {
   transform: scale(0.9);
  }
 
  100% {
   transform: scale(1);
  }
}
.forgotPwd a{
  font-size: 12px;
  color: #01497cd0;
  font-weight: normal !important;
  cursor: pointer;
  text-decoration: underline;
}
.loginbtn{
  display: flex;
  justify-content: flex-end;
}
.loginbtn button{
  padding: 10px;
  margin: 30px 15px 0px 0px;
  border: 1px solid #63637f;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #01497c;
  width: 30%;
  cursor: pointer;
}
.loginbtn button:hover{
  background-color: #f0f0f0;
  color: #01497c;
  transition: .3s;
}
.loginbtn #backButton{
  color: #01497c;
  background-color: #fff;
}
.loginbtn #backButton:hover{
  color: #fff;
  background-color: #01497c;
}
.pwd-update-form{
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.468);
  border: 1.5px solid #63637f;
  border-radius: 15px;
  width: 350px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-left: 30px;
  margin-top: -20px;
}