/* The message box is shown when the user clicks on the password field */
#message {
	width:65%;
    display:none;
    /*background: #f1f1f1;*/
    color: #000;
    position: relative;
    padding: 0 10px;
    margin: 15px auto;
}

#message p {
    padding: 5px 20px;
    font-size: 12px;
	margin:0;
}
#message h5{
	text-align:left;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
    color: green;
}

.valid:before {
    position: relative;
    left: -20px;
    content: "\2713";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
    color: red;
}

.invalid:before {
    position: relative;
    left: -20px;
    content: "\03a7";
}