/*== forms.css ==*/

.message {
    background: #bdd5f1;
    color: #0076b6;
    padding: 13px 15px;
    clear: both;
    margin-bottom: 20px;
    display: block;
    width: 100%;
}
    .message i.icon-2x {
        font-size: 24px;
    }
    .message ul {
        margin-top: 0;
    }
    .message a:link,
    .message a:visited {
        color: #bdd5f1 !important;
        text-decoration: underline;
    }
    .message a:hover,
    .message a:focus {
        color: #bdd5f1 !important;
        text-shadow: 1px 1px 0 rgba(255,255,255, .5);
    }

form {
    margin-bottom: 20px;
}

fieldset {
    margin-bottom: 20px;
}

input[type="text"], 
input[type = "password"], 
input[type = "email"], 
input[type = "search"],
input[type = "file"],
textarea, select {
    border: 3px solid #f6e3dc;
    padding: 9px 11px;
    outline: none;
    border-radius: 3px;
    color: #888;
    margin: 0;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    font-family: "Lato";
    font-size: 16px;
}

select {
    padding: 7px;
}

input[type = "text"]:focus,
input[type = "password"]:focus,
input[type = "email"]:focus,
textarea:focus {
    color: #444;
    box-shadow: inset 3px 3px 4px rgba(123, 35, 40, .2);
}

textarea {
    min-height: 60px;
    width: 100%;
}

label, legend {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Montserrat";
}

select {}

input[type =
"checkbox"] {
    display: inline;
}

label span, legend span {
    font-weight: normal;
    font-size: 13px;
    text-transform: none;
}
    span.label_help_text {
        color: #999999;
        font-size: 11px;
        text-transform: none;
    }
/* Input Widths */
.input_wide {width: 300px;}
.input_medium {width: 75px;}
.input_narrow {width: 50px;}
/* use full_width class for full width display */

/* To stack labels/inputs next to each other */
.inline_form_section {
    display: inline;
    margin-right: 10px;
    float: left;
}
.inline_form_section.action_link {
    padding-top: 25px;
}
.inline_form_section input[type="text"],
.inline_form_section select,
.inline_form_section a.button {
    margin-bottom: 0;
}

/*== Buttons ==*/
a.button, button, input[type = "submit"], input[type = "reset"], input[type = "button"] {
    background: #e63a3d;
    border: none;
    color: #fff !important;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 20px;
    line-height: normal;
    padding: 11px 17px;
    font-family: "Lato";
    text-align: center;
    max-width: 100%;
    -webkit-transition: all .2s;
    transition: all .2s;
}
    a.button.pink,
    input[type = "submit"].pink {
        background: #e63a3d;
    }
a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type = "button"]:hover {
    background: #7b2328;
    color: #fff;
}
    a.button.pink:hover,
    input[type = "submit"].pink:hover {
        background: #7b2328;
    }
.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    -moz-box-shadow: inset 3px 3px 0px #22314b;
    -webkit-box-shadow: inset 3px 3px 0px #22314b;
    box-shadow: inset 3px 3px 0px #22314b;
}
    a.button.pink:active,
    input[type = "submit"].pink:active {
        -moz-box-shadow: inset 3px 3px 0px #9f1862;
        -webkit-box-shadow: inset 3px 3px 0px #9f1862;
        box-shadow: inset 3px 3px 0px #9f1862;
    }
.button.full_width,
button.full_width,
input[type="submit"].full_width,
input[type="reset"].full_width,
input[type="button"].full_width {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
}

a.button.primary,
button.primary,
input.primary {
    font-size: 120%;
    font-weight: 300;
    color: #fff;
}
a.button.small,
button.small,
input.small {
    font-size: 90%;
    padding: 5px 10px;
}

/* Button Panel */
.button_panel {
    text-align: right;
    width: 100%;
    padding: 20px 20px 0;
    background: #f0f0f0;
}    
    /* Descriptive text that preceeds the button */
    .button_panel span {
        line-height: 2.5em;
        padding-right: 10px;
    }
    
/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Captcha Image */
.captcha {}

/* Captcha Input */
#captcha {
    float: left;
    margin-right: 10px;
    width: 65px;
}
    
/* Required Field */
.required {
    color: #900;
    margin-left: 2px;
}

/* Validation */
.error {
    color: #d85557 !important;
}
    input.error,
    textarea.error,
    select.error,
    .message.error {
        background: #f1bdbe !important;
        color: #d85557;
    }
    
    .message.error a:link,
    .message.error a:visited {
        color: #d85557 !important;
        text-decoration: underline;
    }
    .message.success {
        background: #bdf1cd !important;
        color: #41975b
    }
    
    .message.success a:link,
    .message.success a:visited {
        color: #41975b !important;
        text-decoration: underline;
    }
