﻿body {
    padding-bottom: 20px;
    box-sizing: border-box;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
    min-width: 502px;
    max-width: 1100px;
}

textarea {
    height: 200px;
    width: 100%;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    border: 1px solid #00447B;
}

input[type=text] {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    padding: 8px 1px 8px 8px;
    margin: 5px 8px 0px 0px;
    border: 1px solid #00447B;
    width: 80%;
    max-width: 380px;
}

    input[type=text]:focus, .inputs select:focus {
        box-shadow: 0 0 3px #00447B;
        border: 1px solid #00447B;
    }

select {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    padding: 8px 1px 8px 8px;
    margin: 5px 8px 3px 0px;
    border: 1px solid #00447B;
    width: 262px;
}

.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

.container {
    width: 100%;
    float: left;
}

    .container .col-1 {
        width: 25%;
        float: left;
        text-align: right;
        clear: both;
        padding-bottom: 10px;
        padding-right: 10px;
        padding-top: 10px;
    }

    .container .col-2 {
        width: 60%;
        float: left;
        padding-bottom: 10px;
        white-space: nowrap;
    }

    .container #screenshot-label {
        width: 25%;
        float: left;
        text-align: right;
        clear: both;
        padding-bottom: 10px;
        padding-right: 10px;
        padding-top: 0px;
    }

.wrapper p {
    text-align: center;
}

/* Reusable Btns - standard gray */
.buttons .btn-standard {
    font-size: 16px;
    padding: 10px 35px 10px 35px;
    font-weight: bold;
    background-color: #db3f45;
    box-shadow: 0 3px 1px #790900;
    background: -webkit-gradient(linear, left top, left bottom, from(#db3f45), to(#bb2e32));
    background: -webkit-linear-gradient(top, #db3f45, #bb2e32);
    background: -moz-linear-gradient(top, #db3f45, #bb2e32);
    background: -o-linear-gradient(top, #db3f45, #bb2e32);
    background: -ms-linear-gradient(top, #db3f45, #bb2e32);
    background: linear-gradient(top, #db3f45, #bb2e32);
}

.buttons {
    position: relative;
    text-decoration: none;
    float: none;
    width: auto;
    text-transform: none;
    margin-top: 5px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

    .buttons .button {
        font-family: 'Vagabond',sans-serif;
        position: relative;
        text-align: center;
        color: #ffffff !important;
        border-radius: 4px;
        text-decoration: none;
        float: none;
        width: auto;
        border: none;
        vertical-align: middle;
        cursor: pointer;
    }

        .buttons .button:focus {
            outline: none;
        }

.required {
    color: #db3f45;
}
