.form-style {
    color: #222221;
    max-width: 80%;
    padding: 0;
    margin: 50px auto;
}
.form-style label {
    display: block;
    margin: 0px 0px 15px 0px;
}
.form-style input.input-field,
.form-style .tel-number-field,
.form-style .textarea-field,
.form-style .select-field {
    font-family: 'thesansplain';
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    line-height: 130%;
    max-width: 100%;
    min-width: 100%;
    margin: 0;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #C2C2C2;
    box-shadow: 1px 1px 4px #EBEBEB;
    -moz-box-shadow: 1px 1px 4px #EBEBEB;
    -webkit-box-shadow: 1px 1px 4px #EBEBEB;
    padding: 7px;
    outline: none;
}
.form-style .input-field:focus,
.form-style .tel-number-field:focus,
.form-style .textarea-field:focus,
.form-style .select-field:focus {
    border: 1px solid #0C0;
}
.form-style .textarea-field {
    height: 100px;
    min-height: 80px;
    max-height: 80px;
    max-width: 100%;
    min-width: 100%;
    resize: none
}
.form-style input[type="button"],
.form-style input[type="submit"] {
    max-width: 100%;
    min-width: 100%;
    background-color: #fff;
    border: 1px solid #C2C2C2;
    display: inline-block;
    cursor: pointer;
    padding: 8px 18px;
    text-decoration: none;
    font-family: 'thesansplain';
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    line-height: 130%;
}
.form-style input[type="button"]:hover,
.form-style input[type="submit"]:hover {
    border: 1px solid #000
}
.form-style .success {
    font-family: 'thesansplain';
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    line-height: 130%;
    background: #AED4C8;
    padding: 5px 10px 5px 10px;
    margin: 0px 0px 5px 0px;
    border: none;
    font-weight: normal;
    color: #000;
}
.form-style .error {
    font-family: 'thesansplain';
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    line-height: 130%;
    background: #9F353C;
    padding: 5px 10px 5px 10px;
    margin: 0px 0px 5px 0px;
    border: none;
    font-weight: normal;
    color: #fff;
}