/* The message box is shown when the user clicks on the password field */

#message-register {
  display:none;
}


/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: #28a745;
}

.valid:before {
  position: relative;
  left: -10px;
  content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: #dc3545;
}

.invalid:before {
  position: relative;
  left: -10px;
  content: "✖";
}

div.c {
  line-height: 40%;
}

/*
.g-recaptcha{
  margin: 15px auto !important;
  width: auto !important;
  height: auto !important;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -o-center;
  text-align: -ms-center;
}
*/


