.signUpModel{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
}
.signUpModel.show{
  display: block;
}
.signUpoverlay{
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: block;
  transition: all ease .3s;
}
.signUpForm {
  position: absolute;
  max-width: 480px;
  width: 100%;
  height: auto;
  top: 10%;
  left: 150%;
  transform: translateX(-50%);
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: all ease 0.5s;
}
.loginForm {
  position: absolute;
  max-width: 480px;
  width: 100%;
  height: auto;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: all ease 0.5s;
}
.loginForm.show{
  top: 27%;
}
.signUpForm.show{
  left: 50%;
  overflow-x: hidden;
}
.signUpForm.show.hidden{
  top:110%;
}
.signuphead{
  font-weight: 500;
  font-size: 26px;
  line-height: 33px;
  color: #333638;
  margin-bottom: 20px;
}
.signup .inputGroup, .signin .inputGroup{
  margin-bottom: 20px;
}
.signup .inputGroup label, .signin .inputGroup label{
  position: absolute;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  color: #5F636C;
  z-index: 1;
  top: 15px;
  left: 25px;
  margin-bottom: 0;
  transition: all ease .3s;
}
.signup .inputGroup input, .signin .inputGroup input{
  padding: 18px 30px 19px 22px;
  max-height: 50px;
}
.signup .inputGroup label.focused, .signin .inputGroup label.focused {
  left: 15px;
  top: -9px;
  padding: 0 5px;
  background: #fff;
  color: #02837A;
}
.inputGroup.signupGroup input{
  max-height: 50px;
  height: 100%;
}
.signup p.showPassTxt, .signin p.showPassTxt{
  font-weight: 400;
  margin-left: 8px;
  font-size: 14px;
  line-height: 16px;
  color: #0F0F0F;
}
.showPassCheck {
  margin: -10px 0 0;
  display: flex;
  align-items: center;
  position: relative;
}
.flexInput {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.flexInput.passwordsFlex {
  align-items: start;
}
.flexInput div{
  flex-basis: 200px;
}
button.getStarted{
  display: block;
  padding: 14px 0;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  background: #02837A;
  border-radius: 100px;
  width: 100%;
  border: none;
  margin: 40px 0 45px;
  cursor: pointer;
}
button.getStarted:hover{

  background: #02C585;

}
p.loginRedirect{
  font-size: 16px;
  line-height: 19px;
  color: #333638;
  text-align: center;
}
a.loginModelButton{
  text-decoration: underline;
  color: #1967D7;
}
.signin .inputGroup input.valid ~ label.focused, .signup .inputGroup input.valid ~ label.focused{
  color: #13AD35;
}
.signin .inputGroup input.invalid ~ label.focused, .signup .inputGroup input.invalid ~ label.focused{
  color: #DF4D4D;
}
.signin img.forValid, .signup img.forValid{
  top: 15px;
}
h2.pageHead{
  font-weight: 600;
  font-size: 23px;
  line-height: 34px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #004B3D;
  max-width: 310px;
  margin: 0 auto 31px;
}
.allForms {
  position: relative;
  left: -82px;
}
.custom-alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  margin-bottom: 25px;
  padding: 10px 15px;
  border-radius: 8px;
  text-transform: capitalize;
}
.custom-alert-danger {
  /* color: #721c24; */
  color: #721c24;
  background-color: #f8d7da !important;
  border-color: #f5c6cb;
  margin-bottom: 20px;
  padding: 10px 15px;
  border-radius: 8px;
  text-transform: capitalize;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
.iti-mobile .iti--container{
  z-index: 9999999999;
}
@media (max-width:1300px) {
  form.active {
    left: 50px;
  }
}
@media (max-width:1200px) {
  .divLeft img {
    max-width: 390px!important;
  }
}
@media (max-width:991px) {
  .pageWrapper .divLeft{
    display: none;
  }
  .divRight{
    flex-basis: 60%;
    background: none;
  }
  .allForms{
    left: -12px;
  }
}
@media (max-width:767px) {
  .divRight{
    flex-basis: 90%;
  }
  form.signup{
    max-width: 100%;
  }
  form.active {
    left: 10px;
  }
  form{
    max-width: 100%;
  }
}
@media (max-width:575px) {
  form.active {
    left: 0px;
  }
  .signUpForm {
    top: 5%;
  }
  .loginForm.show {
    top: 10%;
  }
  .divRight{
    height: 90%;
  }
  .signin p.loginRedirect{
    bottom: 0;
  }
  h2.pageHead {
    font-size: 17px;
  }

}
@media (max-width:460px) {
  #account_password{
    margin-right: 5px;
  }
  .flexInput .inputGroup:first-child input[type="password"] {
    width: 97%;
  }
}
@media (max-width:392px) {
  .signup .inputGroup label{
    font-size: 13px;
    left: 19px;
  }
}
@media (max-height: 750px) AND (max-width: 575px) {
  .divRight{
    height: 110%;
  }
}
body.overflowHide{
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}
