/* The message box is shown when the user clicks on the password field */
#message {
    display: none;
    background: #333;
    color: #fff;
    position: absolute;
    padding: 20px;
    margin-top: 10px;
    margin: .75rem;
    border-radius: 10px;
    z-index: 9999999;
  }
  
  #message p {
    padding: 0 35px;
    font-size: 14px;
  }
  
  /* Add a green text color and a checkmark when the requirements are right */
  .valid {
    color: #1de55a;
  }
  
  .valid:before {
    position: relative;
    left: -35px;
    content: "✔";
  }
  
  /* Add a red text color and an "x" icon when the requirements are wrong */
  .invalid {
    color: #e51d1d;
  }
  
  .invalid:before {
    position: relative;
    left: -35px;
    content: "✘";
  }
  
  #togglePassword , #toggle_Password , #_togglePassword {
    margin-left: -30px;
    cursor: pointer;
  }

  #togglePass{
    cursor: pointer;
  }
  
  #CheckPasswordMatch {
    display: none;
    position: absolute;
    background: #333;
    color: #fff;
    margin: .75rem;
    padding: 12px;
    border-radius: 14px;
    z-index: 9999999;
  }

