﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default 

    FFS - DJS this totally overrides all bootstrap responsive stuff, lets use bootstrap columns to size controls unless we absolutely want too
*/

input.input-maxwidth-280,
select.input-maxwidth-280,
textarea.input-maxwidth-280 {
    max-width: 280px;
}

/* styles for validation helpers */
.field-validation-error {
    color: #D81E05;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #D81E05;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #D81E05;
}

.validation-summary-valid {
    display: none;
}

