/**
 * Forms
 */
form {
    margin: 0;
}

form ul {
    margin: 5px 0 5px 0;
    padding:0;
}

form ul li {
    list-style: none;
}

fieldset {
    margin: 5px 0 15px 0;
    padding:25px;
}

fieldset ul {
    margin: 0;
    padding:0;
}

fieldset ul li {
    list-style: none;
}

/**
 * Indicate that 'label' will shift focus 
 * to the associated form element 
 */
label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

legend {
    border: 0;
    padding:0;
    font-size: 14px;
    font-weight: bold;
}

button,
input,
select,
textarea {
    vertical-align: baseline;
    *vertical-align: middle;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
    width: auto;
    background: #111111;
    border: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    padding:15px 25px;
    margin-bottom: 1.5em;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    z-index: 999;
    cursor: pointer;
    border-radius: 0px;
    -webkit-transition: 250ms linear all;
    -moz-transition: 250ms linear all;
    transition: 250ms linear all;
}

/*button:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: #111111 !important;
    color: #ffffff !important;
}*/

button:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    background: #f1f1f1;
    font-size: 14px;
    /*padding:15px;*/
    border: none;
    border-radius: 3px;
}

select {
    background: transparent;
    height: 50px;
    font-size: 15px;
    padding:5px 15px;
    margin-bottom: 20px;
    color: #111111;
    border: 1px solid #111111;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

input[type="file"] {
    padding:5px;
    border: 1px solid #111111;
}

textarea {
    min-height: 100px;
    margin-bottom: 10px;
}

input.blue,
textarea.blue {
    border: 1px solid #2daebf;
}

input.orange,
textarea.orange {
    border: 1px solid #ff5c00;
}

input.red,
textarea.red {
    border: 1px solid #ff2b25;
}

input.green,
textarea.green {
    border: 1px solid #91bd09;
}

label.blue,
label.orange,
label.red,
label.green {
    width: 100%;
    font-size: 12px;
    font-weight: normal;
    float: left;
    margin: 0 0 5px 2px;
}

label.blue {
    color: #2daebf;
}

label.orange {
    color: #ff5c00;
}

label.red {
    color: #ff2b25;
}

label.green {
    color: #91bd09;
}

/** 
 * Colors for form validity 
 */
label.error {
    color: #D34047;
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 15px;
    margin-left: 5px;
    text-align: left;
    float: left;
}

input.error {
    border: 2px solid #FBE3E3;
}

input[type="text"].error,
input[type="password"].error,
input[type="numbers"].error,
textarea.error {
    border: 1px solid #FBE3E3;
}

label span.required {
    color: #FBE3E3;
}

label span.info {
    filter: alpha(opacity=50);
    -khtml-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
}