/* Request (Form) Section */
.request-section {
    padding-top: 80px;
}

.request-header {
    margin-bottom: 32px;
}

.request-section .section-title {
    margin-bottom: 80px;
}

.request-form {
    background: #f7f7fe;
    border-radius: 30px;
    padding: 80px 40px;
    max-width: 1140px;
    margin: 0 auto;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    position: relative;
}

.form-field label {

    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #383d4c;
    margin-bottom: 0;
}

.form-field input {
    margin-top: 40px;
    display: block;

    font-size: 16px;
    line-height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: #383d4c;
    outline: none;
}

.form-field input:focus {
    box-shadow: none;
}

/* Разделительные линии */
.form-field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(56, 61, 76, 0.2);
}

.field-error {
    margin-top: 6px;
    color: #ee5757;

    font-size: 12px;
    line-height: 16px;
}

.form-footer {
    margin-top: 150px;
}

.checkbox {
    display: inline-flex;
    align-items: flex-start;
    gap: 18px;
    user-select: none;

    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #383d4c;
    flex: 1;
}

.checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 23px;
    height: 23px;
    border: 1px solid #4a8cf0;
    border-radius: 11.5px;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: #fff;
    transition: all 0.2s ease;
    margin-top: -3px;
    flex-shrink: 0;
}

.checkbox input[type="checkbox"]:checked {
    border-color: #4a8cf0;
    background: radial-gradient(#4a8cf0 55%, transparent 56%);
}

.checkbox input[type="checkbox"].is-invalid {
    border-color: #ee5757 !important;
}

.checkbox a {
    color: #4a8cf0;
    text-decoration: underline;
}

.request-submit {
    background: #4a8cf0;
    color: #fff;
    border: none;
    padding: 22px 24px;
    border-radius: 8px;

    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.request-submit:hover {
    background: #3a7bd8;
    transform: translateY(-1px);
}

.form-result {
    margin-top: 14px;

    font-size: 14px;
}

.form-result-success {
    color: #00b860;
}

.form-result-error {
    color: #ee5757;
}

@media (max-width: 768px) {
    .request-submit {
        width: 100%;
    }
}