h3.form-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3em;
    text-align: center;
}

#error, #success {
    margin-bottom: 10px;
    font-size: 14px;
}
#processing-block {
    margin-bottom: 10px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}
.form-control {
    display: block;
    margin: 0;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #555;
    background-color: #efefef;
    background-image: none;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form-control:focus {
    border-color: #66afe9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    outline: none;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    white-space: normal;
}
.btn.focus, .btn:focus, .btn:hover {
    color: #333;
    text-decoration: none;
    outline: none;
}
.btn.send-form {
    margin-top: 25px;
    font-weight: 700;
    color: #fff;
    border-radius: 2px;
    padding: 7px 10px;
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
    -webkit-appearance: button;
    cursor: pointer;
}
.btn.send-form:hover, .btn.send-form:focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}
.btn-block {
    display: block;
    width: 100%;
}
.spam-protection {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.1;
    color: inherit;
    text-align: center;
}

.form {
    padding: 20px;
}

@media only screen and (min-width: 768px) {
    h3.form-title {
        font-size: 22px;
    }
    .form-control {
        height: 48px;
    }
    .send-form {
        padding: 15px;
        font-size: 20px;
    }
}