.review-form-page {
    background: #f8fafc;
    padding: 80px 0;
}

.form-card {
    background: white;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
    font-size: 2.5rem;
}

.star-rating input { display: none; }

.star-rating label {
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--accent);
}

.form-label {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-control {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.form-control:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.05);
}
