/* Beta testers page (/Beta) */

.beta-hero {
    background: linear-gradient(135deg, #111827 0%, #1A3A5C 50%, #1A5EA0 100%);
    color: #ffffff;
    padding: 6rem 0 3rem;
}

.beta-hero .lead {
    color: rgba(255, 255, 255, 0.9);
}

.beta-form-section {
    background-color: var(--bg-color);
}

.beta-form-section .card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.beta-form-section .form-label,
.beta-form-section .form-check-label {
    color: var(--text-color);
}

.beta-form-section .text-muted {
    color: var(--text-secondary) !important;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.star-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.9rem;
    color: var(--border-color);
    transition: color 0.15s ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f5b301;
}
