#pass-message {
  display:none;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

#pass-message span {
    padding-left: 20px;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

/* Add a green text color and a checkmark when the requirements are right */
.pass-valid {
  color: green;
}

.pass-valid:before {
  position: relative;
  left: -20px;
  content: "-";
}

/* Add a red text color and an "x" when the requirements are wrong */
.pass-invalid {
  color: red;
}

.pass-invalid:before {
  position: relative;
  left: -20px;
  content: "x";
}