
form.contact label {
	float: left;
	width: 100%;
    color: #60c2ad;
    margin-bottom: 0.1em;
}

form label.checkbox {
    max-width: calc(100% - 35px);
    margin-bottom: 10px;
}
form input[type="checkbox"] {
    float: left;
    margin-right: 10px;
}

form.contact label.required {
    font-weight: 400;
}

form.contact input[type=text],
form.contact textarea {
    float: left;
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    font-size: 100%;
    margin-bottom: 1em;
    color: black;
}

form.contact select:focus,
form.contact input[type=text]:focus,
form.contact textarea:focus {
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    outline: 0 none;
}

form.contact button[type=submit] {
    float: left;
    padding: 6px 12px;
    background-color: #f98a2d;
    border-radius: 15px;
    border: none;
    color: white;
    font-size: 100%;
    font-weight: 600;
    cursor: pointer;
}

form.contact span.validatormessage {
    float: right;
    color: red;
    font-size: 90%;
    clear: both;
    display: block;
    margin-top: -1em;
}

form.contact div span.validatormessage {
    margin-left: 0;
}

form.contact select.error,
form.contact input[type=text].error,
form.contact textarea.error,
form.contact input[type=checkbox].error {
    border: 1px solid red;
}

form.contact input[type=radio] {
    float: left;
}

form.contact fieldset label {
    width: 87%;
    padding-left: 6px;
    margin-top: -2px;
}

form.contact fieldset br {
    clear: both;
}

.error:before {
    color: red;
    content: "\002A";
    font-family: 'Glyphicons Regular', sans-serif;
    float: left;
    margin-left: -22px;
}

#nameField {
    display: none;
}
