.form {

}

.form__row {
    margin-bottom: 12px;
}

.form__row_agree {
    display: flex;
    align-items: flex-start;
    padding-left: 0;
}

.form .form__agree-checkbox {
    margin: 2px 8px 0 0;
    position: static;
}

.form__label {
    display: block;
    margin-bottom: 4px;
}

.form__input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    border: 1px solid #999;
    background-color: #fafafa;
    border-radius: 4px;
}

.form__result {
    font-weight: bold;
    margin: 0 0 20px;
    display: none;
}

.form__result_visible {
    display: block;
}

.form__result_status_success {
    color: green;
}

.form__result_status_error {
    color: #d93a27;
}