﻿/* The message box is shown when the user clicks on the password field */
#message-validation {
    display: none;
    color: #000;
    position: relative;
    padding: 20px;
    margin-top: 10px;
}

    #message-validation p {
        padding: 10px 35px;
    }

/* Add a green text color and a checkmark when the requirements are right */
.happy {
    color: green;
}

    .happy:before {
        position: relative;
        left: -35px;
        content: "✔";
    }

/* Add a red text color and an "x" when the requirements are wrong */
.sad {
    color: red;
}

    .sad:before {
        position: relative;
        left: -35px;
        content: "✖";
    }
