#contact_form .field_form {
    height: 40px;
    background: #f0f0f0;
    border: 0 none;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #888888;
    font-family: "Arial";
    margin-bottom: 20px;
}
#contact_form .field_form.msg {
    height: 140px;
    resize: none;
}
#contact_form .msg_submit {
    display: table;
    margin: 0 auto;
    line-height: 40px;
    background: #f95d0f;
    color: #FFF;
    text-transform: uppercase;
    font-size: 16px;
    padding: 0 50px;
}
#contact_form .msg_submit:hover {
    background: #76c001;
    color: #FFF;
    text-decoration: none;
}
#contact_form .field_form.error {
    box-shadow: 0px 0px 2px #f95d0f inset;
    -webkit-box-shadow: 0px 0px 2px #f95d0f inset;
    -ms-box-shadow: 0px 0px 2px #f95d0f inset;
    -o-box-shadow: 0px 0px 2px #f95d0f inset;
}
#contact_form .field_form:focus {
    box-shadow: 0px 0px 2px #76c001 inset;
    -webkit-box-shadow: 0px 0px 2px #76c001 inset;
    -ms-box-shadow: 0px 0px 2px #76c001 inset;
    -o-box-shadow: 0px 0px 2px #76c001 inset;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
#contact_form .msg_form {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: -30px;
}
#contact_form .msg_form.success {
    color: #76c001;
}
#contact_form .msg_form.error {
    color: #b50000;
}

