/*validation of the contact form*/
input[type=text] {
    font-style: italic;
}

invalid_cross {
    color: red;

}

valid_check {
    color: green;
}

.invalid-message {
    color: red;
    font-style: italic;
    font-weight: bold;
}

.valid-message {
    color: darkgreen;
    font-style: italic;
    font-weight: bold;
}

.row-no-padding {
    [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/*styles to prevent having a rose background when autofill in chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 3rem white inset !important;
}
