/* The message box is shown when the user clicks on the password field */
#message {
  display:none;
  border-radius: 25px;
  background: #f1f1f1;
  color: #000;
  position: relative;
  text-align: center;
}

#message p {
  font-size: 18px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -5px;
  content: "✅";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -5px;
  content: "❌";
}

#alert_info {display:none;color:red}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}