/* The message box is shown when the user clicks on the password field */
#pwdmessage {
    display:none;
    background: #253763;
    color: #fff;
    position: relative;
    padding: 20px;
    margin-top: 10px;
  }
  
  #pwdmessage p {
    padding: 10px 35px;
    font-size: 18px;
  }
  
  /* Add a green text color and a checkmark when the requirements are right */
  .valid {
    color:lime;
  }
  
  .valid:before {
    position: relative;
    left: -35px;
    content: "✔";
  }
  
  /* Add a red text color and an "x" when the requirements are wrong */
  .invalid {
    color: pink;
  }
  
  .invalid:before {
    position: relative;
    left: -35px;
    content: "✖";
  }
  