﻿.review-form-page {
    padding: 88px 0 104px;
}

.review-form__container {
    display: flex;
    justify-content: center;
}

.review-form__card {
    width: 100%;
    max-width: 920px;
    padding: 40px 34px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(8, 14, 30, 0.92), rgba(3, 8, 20, 0.96));
    border: 1px solid rgba(203, 213, 245, 0.10);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.16);
}

.review-form__header {
    text-align: center;
    margin-bottom: 32px;
}

.review-form__badge {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(238, 212, 165, 0.10);
    border: 1px solid rgba(238, 212, 165, 0.18);
    color: #eed4a5;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
}

.review-form__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.review-form__text {
    margin: 18px auto 0;
    max-width: 700px;
    color: #cbd5f5;
    line-height: 1.8;
}

.review-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.review-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

    .review-form__field label,
    .review-form__checkbox label {
        color: #ffffff;
        font-weight: 600;
    }

.review-form__input,
.review-form__textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 245, 0.16);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    outline: none;
}

.review-form__textarea {
    resize: vertical;
}

    .review-form__input:focus,
    .review-form__textarea:focus {
        border-color: rgba(238, 212, 165, 0.40);
    }

.review-form__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 24px;
}

    .review-form__checkbox input {
        width: 18px;
        height: 18px;
    }

.review-form__validation,
.review-form__error {
    color: #fca5a5;
    font-size: 0.9rem;
}

.review-form__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .review-form-page {
        padding: 64px 0;
    }

    .review-form__card {
        padding: 32px 22px;
    }

    .review-form__grid {
        grid-template-columns: 1fr;
    }

    .review-form__actions {
        flex-direction: column;
    }

        .review-form__actions .btn-primary-orange,
        .review-form__actions .btn-secondary-outline {
            width: 100%;
        }
}

.review-form__input {
    background-color: #0b0d12;
    color: #f8fafc;
}

    .review-form__input option {
        background-color: #0b0d12;
        color: #f8fafc;
    }