/* Light Theme Registration Modal */

/* --- Container & Modal Base --- */
.modal-content {
    background: #FFFFFF !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    padding: 3rem !important;
    color: #1a202c !important;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem !important;
        margin: 20% auto !important;
        /* Center it more vertically on mobile */
        width: 85% !important;
        /* Slightly narrower */
    }

    .modal-partner-logo {
        height: 64px !important;
        /* 20% smaller than 80px */
        margin-bottom: 1.5rem !important;
    }
}

.modal-partner-logo {
    height: 80px;
    margin-bottom: 2rem;
    transition: height 0.3s ease;
}

.modal-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
    color: #1a202c !important;
}

.modal-subtitle {
    font-family: 'Inter', sans-serif !important;
    color: #718096 !important;
    font-size: 1rem !important;
    margin-bottom: 2.5rem !important;
    line-height: 1.5 !important;
}

.modal-close {
    color: #a0aec0 !important;
    top: 1.5rem !important;
    right: 1.5rem !important;
}

.modal-close:hover {
    color: #1a202c !important;
}

/* --- Primary Button --- */
.btn-register {
    background: #D4AF37 !important;
    color: #000 !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
    padding: 1rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(212, 175, 55, 0.4);
}

.btn-register:hover {
    background: #E5C358 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.5);
}

/* --- Helper classes for older elements if they reappear --- */
.role-btn {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
}

.role-btn:hover {
    background: #edf2f7;
}

.role-label {
    color: #2d3748;
}

.role-desc {
    color: #718096;
}