/* Validation Messages */
.validation-message {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    position: absolute;
    top: 100%;
    line-height: 1;
}

.error {
    color: red;
}

.success {
    color: green;
}

.valid {
    border-color: green;
}

.invalid {
    border-color: red;
}