/* css__file_password.css */

#psw_submit
{
  background-color: red;
  color: white;
}

/*  Style the container for inputs */ 
.container_input {
  background-color: #f1f1f1;
  padding: 2px;
}

/* The message box is shown when the user clicks on the password field */ 
#psw_message {
  display: none;
  background: #f1f1f1;
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}

#psw_message span {
  padding: 10px 35px;
  font-size: 18px;
}

/*  Add a green text color and a checkmark when the requirements are right */ 
.psw_valid {
  color: green;
}

.psw_valid:before {
  position: relative;
  left: -35px;
  content: "?";
}

/* Add a red text color and an "x" when the requirements are wrong */ 
.psw_invalid {
  color: red;
}

.psw_invalid:before {
  position: relative;
  left: -35px;
  content: "?";
}

