﻿/* all input fields */
passwordChange_input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
}

/* submit button */
passwordChange_submitButton {
    background-color: #4CAF50;
    color: white;
}

/* container for inputs */
.passwordChange_container {
    background-color: #f1f1f1;
    padding: 20px;
}

/* The message box is shown when the user clicks on the password field */
.passwordChange_messageNode {
    background: #f1f1f1;
    color: #000;
    position: relative;
    padding: 20px;
    margin-top: 10px;
}

.passwordChange_messageNode p {
    padding: 10px 35px;
    font-size: 14px;
}

/* Add a green text color and a checkmark when the requirements are right */
.passwordChange_valid {
    color: green;
}

.passwordChange_valid:before {
    position: relative;
    left: -35px;
    content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.passwordChange_invalid {
    color: red;
}

.passwordChange_invalid:before {
        position: relative;
        left: -35px;
        content: "✖";
}
