/* ==========================================================================
   Global Auth Styles (Halaman Login, Register, Forgot Password)
   ========================================================================== */

body {
    /* Path disesuaikan mundur satu folder (../) untuk mengakses assets/img/ */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
}

.card { 
    width: 100%;
    border-radius: 20px; 
    border: none; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.3); 
    /* Catatan: max-width (400px untuk login, 600px untuk register) 
       dibiarkan diset via inline style di masing-masing file HTML agar lebih fleksibel */
}

.logo-img { 
    width: 90px; 
    height: 90px; 
    object-fit: contain; 
    margin-bottom: 15px; 
}

/* ==========================================================================
   Form Controls
   ========================================================================== */

.form-control, .form-select { 
    border-radius: 12px; 
    padding: 12px 15px; 
}

.form-control:disabled, .form-select:disabled { 
    background-color: #e2e8f0; 
    cursor: not-allowed; 
    opacity: 0.7; 
}

.form-floating > label { 
    padding: 12px 15px; 
}

/* ==========================================================================
   Buttons
   ========================================================================== */

/* Menggabungkan style btn-primary (di Login) dan btn-register (di Register) */
.btn-primary, .btn-register { 
    border-radius: 12px; 
    padding: 12px 15px; 
    font-size: 1.1rem;
    font-weight: 700; 
    background: #667eea; 
    border: none; 
    color: #fff;
    transition: background 0.3s ease;
}

.btn-primary:hover, .btn-register:hover {
    background: #5a67d8;
}

/* ==========================================================================
   Spesifik Halaman Register
   ========================================================================== */

.section-title { 
    font-size: 0.85rem; 
    font-weight: 600; 
    color: #555; 
    margin-left: 5px; 
    margin-bottom: 5px; 
}

/* Custom Styling for Radio Buttons (Status & Gender) */
.custom-radio-group { 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
}

.custom-radio-group input[type="radio"] { 
    display: none; 
}

.custom-radio-group label {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #4a5568;
    background-color: #f8fafc;
}

.custom-radio-group input[type="radio"]:checked + label {
    border-color: #667eea;
    background-color: #ebf4ff;
    color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.custom-radio-group label i { 
    margin-right: 8px; 
}

/* ==========================================================================
   Responsive Design (Mobile)
   ========================================================================== */

@media (max-width: 576px) { 
    .card { 
        padding: 20px !important; 
    } 
    h3 { 
        font-size: 1.5rem; 
    } 
    .custom-radio-group { 
        flex-direction: column; 
    }
}