/*== forms.css ==*/

.message {
    background: #00b09a;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    padding: 10px;
    clear: both;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}
    .message a {
        color: #fff;
        text-decoration: underline;
    }
        .message a:hover{
            text-shadow: 1px 1px 0 rgba(255,255,255, .5);
            text-decoration: underline;
        }
    .message i.icon-2x {
        margin-top: -4px;
        line-height: 1;
    }
    .message ul {
        margin-top: 0;
    }
    
    /* Error Messages */
    .message.error {
        background: #c63f3f;
    }
    
    /* Informational Messages */
    .message.information {}
    
        .message.information a {}

form {
    margin-bottom: 20px;
}

fieldset {
    margin-bottom: 20px;
}

input[type="text"], 
input[type = "password"], 
input[type = "email"], 
textarea, select {
    border: 1px solid #ccc;
    padding: 6px 4px;
    outline: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #777;
    margin: 0;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
}

select {
    padding: 5px 4px;
}

input[type = "text"]:focus,
input[type = "password"]:focus,
input[type = "email"]:focus,
textarea:focus {
    border: 1px solid #aaa;
    color: #444;
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

textarea {
    min-height: 60px;
    width: 100%;
}

label, legend {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

input[type="file"] {
    margin-bottom: 20px;
}

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_full {width: 610px;}
.input_wide {width: 300px;}
.input_one_third {width: 196px;}
.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: #8dc641;
    border: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 20px;
    line-height: normal;
    padding: 7px 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    max-width: 100%;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
}

a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type = "button"]:hover {
    color: #fff;
    background: #00b09a;
}

.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    -moz-box-shadow: 1px 1px 3px rgba(0,0,0,.25);
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.25);
    box-shadow: 1px 1px 3px rgba(0,0,0,.25);
}

.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: bold;
}
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: 50px;
}

/* Form Heading */
h2.form_heading {
    background: none repeat scroll 0 0 #00B09A;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20.8px;
    padding: 3px 5px;
    text-transform: lowercase;
}
h2.form_heading:first-letter {
    text-transform: uppercase !important;
}
   
/* Required Field */
.required {
    color: #990000;
    font-weight: bold;
    margin-left: 2px;
    text-align: right;
    text-transform: lowercase;
}
    input.required {
        text-transform: none;
    }

/* Validation */
input.error,
label.error {
    color: #f00 !important;
}
    input.error, textarea.error, select.error {
        background: #fcbeba !important;
    }

