#message {
    display:none;
    background: transparent;
    color: #000;
    position: relative;
    padding: 5px;
    margin-top: 0px;
}

#message p {
    /*padding: 10px 35px;*/
    font-size: 12px;
}

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

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

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

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