/* Collect all styles needed for message styling */

/* Styling message at error */
.faultinfo {
    line-height: 18px;
    font-size: 11px;
    color: #e2001a;
    margin-bottom: 20px;
    display: block;
}

/* Styling input fields in case of an error */
.fault {
    color: #e2001a;
    border: 1px solid #e2001a;

    height: 15px;
    padding-top: 1px;
}

/* Styling message at success */
.successinfo {
        line-height: 18px;
        font-size: 11px;
        color: #11AA22;
        margin-bottom: 20px;
        display: block;
    }

/* Hide components */
.invisible {
   display: none !important;
}