﻿.invalid-hint {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: .875em;
    color: #dc3545;
}

.valid-hint {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: .875em;
    color: #008000;
}

#resendVerificationButton {
    margin-top: 32px;
}

#verifyCodeDiv {
    display: none;
}

#mobileNumber {
    padding-left: 45px !important;
    padding-top: 15px !important;
}

#passValidation {
    display: none;
    background: #FFFFFF;
    color: #000;
    position: inherit;
    padding: 0;
    margin-top: 10px;
  }
  
  #passValidation p {
    padding: 10px 35px;
    font-size: 18px;
  }
  
  /* Add a green text color and a checkmark when the requirements are right */
  .valid {
    color: green;
  }
  
  .valid:before {
    position: relative;
    left: -35px;
    content: "\2714";
  }
  
  /* Add a red text color and an "x" icon when the requirements are wrong */
  .invalid {
    color: red;
  }
  
  .invalid:before {
    position: relative;
    left: -35px;
    content: "\2716";
  }