

/* The message box is shown when the user clicks on the password field */
#passwordnotification {
position: absolute;
  display: none;
  background: #f1f1f1;
  color: #000;
  padding: 20px;
  margin-top: -11em;
  margin-left: 25em;
  width: 350px;
  border-radius: 15px
}

#passwordnotification p {
  padding: 0px 35px;
  font-size: 12px;
  line-height: 1.0;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
}

