﻿/* -------------------------------------------------- 
   This file contains CSS overrides that are specific
   to making sure that Foundation works well with MVC
-----------------------------------------------------
*/

/* Overrides: Errors */
.input-validation-error,
input.input-validation-error,
textarea.input-validation-error {
    border-color: #c60f13;
    background-color: rgba(198, 15, 19, 0.1);
}

.field-validation-error {    
    padding: 6px 4px;
    margin-top: -13px;
    margin-bottom: 12px;
    color: #c60f13 !important;
    font-size: 12px !important;
    font-weight: bold;
    -moz-border-radius-bottomleft: 2px;
    -webkit-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    -webkit-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
}