
/* The message box is shown when the user clicks on the password field none block */
#message2 {

  background: #f6f6f6;
  color: #000;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
  border: thin solid #ffa8a8;
  border-radius: 5px;
  orphans: 0;
  height: 0px;
  display:none;
}

#message2 p {
  padding: 4px 35px;
  margin-bottom: 0px;
  font-size: 16px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}
