:root {
    --primary-dark: #064e3b;   /* Hijau Tua Kemenag */
    --primary: #047857;        /* Hijau Utama */
    --primary-light: #10b981;  /* Hijau Terang */
    --accent: #34d399;         /* Hijau Aksen */
    --gradient: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
    --gradient-light: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --gray: #f3f4f6;
    --dark: #1e293b;
    --white: #ffffff;
    --sidebar-width: 280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0fdf4; /* Background sedikit kehijauan */
    color: #333;
    line-height: 1.6;
}

/* === NAVBAR (Landing Page) === */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 99;
}
.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}
.navbar-nav a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
}
.navbar-nav a:hover { color: var(--primary); }

/* === HERO SECTION (Landing Page) === */
.hero {
    background: var(--gradient);
    color: white;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-content { flex: 1; }
.hero-content h1 { font-size: 2.8rem; margin-bottom: 15px; line-height: 1.2; }
.hero-content p { font-size: 1.1rem; margin-bottom: 25px; opacity: 0.9; }
.hero-buttons { display: flex; gap: 15px; }
.hero-image { flex: 1; text-align: right; }
.hero-image img { max-width: 100%; max-height: 350px; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.3); }

/* === LANDING STATS === */
.landing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.landing-stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-light);
    transition: transform 0.3s;
}
.landing-stat-card:hover { transform: translateY(-5px); }
.landing-stat-card h3 { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 5px; }
.landing-stat-card p { color: #666; font-size: 0.9rem; }

/* === INFO / PENGUMUMAN === */
.info-section { padding: 50px; background: #f8fafc; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { color: var(--primary-dark); font-size: 2rem; margin-bottom: 10px; }
.section-title p { color: #666; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.info-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}
.info-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.info-card-header {
    background: var(--gradient-light);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-card-body { padding: 20px; color: #555; font-size: 0.9rem; }
.info-date { font-size: 0.75rem; color: #94a3b8; margin-top: 10px; font-style: italic; }

/* === FOOTER === */
.footer { background: var(--primary-dark); color: white; text-align: center; padding: 30px 50px; }
.footer p { opacity: 0.8; font-size: 0.85rem; margin-bottom: 5px; }

/* === AUTH PAGES (Login) === */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--gradient);
    position: relative;
    overflow-y: auto;
    padding: 20px;
}
.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    display: flex;
    min-height: calc(100vh - 40px);
    max-height: none;
}
.auth-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    overflow: visible;
    height: auto;
}
.auth-left {
    flex: 1;
    background: var(--gradient);
    color: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible; 
}
.auth-left h1 { font-size: 2rem; margin-bottom: 15px; font-weight: 700; }
.auth-left p { opacity: 0.9; font-size: 0.95rem; margin-bottom: 30px; }
.auth-features { list-style: none; }
.auth-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}
.auth-features li::before {
    content: '✓';
    background: rgba(255,255,255,0.2);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
}
.auth-right h2 { color: var(--primary-dark); margin-bottom: 8px; font-size: 1.6rem; }
.auth-right .subtitle { color: #666; margin-bottom: 30px; font-size: 0.9rem; }

/* === FORMS === */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
    font-size: 0.875rem;
}
.form-group label .required { color: var(--danger); }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: #f8fafc;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); /* Shadow hijau */
}
.form-control::placeholder { color: #94a3b8; }
select.form-control { cursor: pointer; appearance: auto; }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-gradient { background: var(--gradient-light); color: white; }
.btn-gradient:hover { box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4); }
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-warning { background: var(--warning); color: white; }
.btn-outline { background: transparent; border: 2px solid #e2e8f0; color: #64748b; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* === FILE UPLOAD === */
.file-upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8fafc;
}
.file-upload-area:hover { border-color: var(--primary-light); background: #ecfdf5; }
.file-upload-area .icon { font-size: 2.5rem; margin-bottom: 10px; }
.file-upload-area p { color: #64748b; font-size: 0.875rem; }
.file-upload-area .filename { color: var(--primary); font-weight: 600; margin-top: 8px; }

/* === ALERTS === */
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 0.875rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #feca8a; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* === LAYOUT (Dashboard) === */
.layout { display: flex; min-height: 100vh; }
.sidebar {
    width: var(--sidebar-width);
    background: var(--gradient);
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: transform 0.3s ease;
}

/* Sembunyikan Scrollbar di Sidebar */
.sidebar::-webkit-scrollbar { display: none; }
.sidebar { -ms-overflow-style: none; scrollbar-width: none; }

.sidebar-header { padding: 25px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-header h2 { font-size: 1.3rem; font-weight: 700; }
.sidebar-header p { font-size: 0.75rem; opacity: 0.7; margin-top: 4px; }
.sidebar-user { padding: 15px 20px; background: rgba(0,0,0,0.15); border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-user .name { font-weight: 600; font-size: 0.9rem; }
.sidebar-user .role { font-size: 0.75rem; opacity: 0.7; text-transform: capitalize; }

.sidebar-menu { list-style: none; padding: 15px 10px; }
.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-radius: 10px;
    margin-bottom: 5px;
}
.sidebar-menu li a:hover { background: rgba(255,255,255,0.1); color: white; }
.sidebar-menu li a.active { background: rgba(255,255,255,0.15); color: white; }
.sidebar-menu li a .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Warna Ikon Modern */
.icon-blue { background: #3b82f6; color: white; }
.icon-green { background: #10b981; color: white; }
.icon-orange { background: #f59e0b; color: white; }
.icon-purple { background: #8b5cf6; color: white; }
.icon-red { background: #ef4444; color: white; }
.icon-cyan { background: #06b6d4; color: white; }
.icon-pink { background: #ec4899; color: white; }

.main-content { 
    flex: 1; 
    margin-left: var(--sidebar-width);
    padding: 25px 30px; 
    width: calc(100% - var(--sidebar-width));
}
.page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.page-header h1 { color: var(--primary-dark); font-size: 1.5rem; }
.page-header .subtitle { color: #64748b; font-size: 0.85rem; }

/* === APP HEADER & OVERLAY (Mobile Only) === */
.mobile-header { display: none; background: var(--gradient); color: white; padding: 15px 20px; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.mobile-header h2 { font-size: 1.1rem; font-weight: 700; }
.mobile-header .menu-toggle { background: rgba(255,255,255,0.2); border: none; color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.sidebar-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 99; }
.sidebar-overlay.active { display: block; }

/* === CARDS & STATS === */
.card { background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden; margin-bottom: 20px; }
.card-header { padding: 18px 25px; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; background: #f8fafc; }
.card-header h3 { color: var(--primary-dark); font-size: 1.05rem; }
.card-body { padding: 25px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 25px; }
.stat-card { background: white; border-radius: 12px; padding: 22px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); display: flex; align-items: center; gap: 18px; transition: transform 0.2s; }
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.stat-card .icon { width: 55px; height: 55px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; flex-shrink: 0; }
.stat-card .icon.blue { background: var(--gradient-light); }
.stat-card .icon.green { background: linear-gradient(135deg, #059669, #10b981); }
.stat-card .icon.orange { background: linear-gradient(135deg, #d97706, #f59e0b); }
.stat-card .icon.red { background: linear-gradient(135deg, #dc2626, #ef4444); }
.stat-card .icon.purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.stat-card .info h4 { font-size: 1.8rem; color: var(--dark); margin-bottom: 2px; }
.stat-card .info p { font-size: 0.8rem; color: #64748b; }

/* === TABLES === */
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
table th { background: var(--primary-dark); color: white; padding: 12px 15px; text-align: left; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
table td { padding: 12px 15px; border-bottom: 1px solid #e2e8f0; font-size: 0.875rem; }
table tr:hover td { background: #f0fdf4; }

/* === BADGES === */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-primary { background: #d1fae5; color: #065f46; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-danger { background: #fee2e2; color: #991b1b; }

/* === PROGRESS TRACKER === */
.progress-tracker { display: flex; justify-content: space-between; position: relative; margin: 30px 0; padding: 0 20px; }
.progress-tracker::before { content: ''; position: absolute; top: 25px; left: 40px; right: 40px; height: 3px; background: #e2e8f0; z-index: 0; }
.progress-tracker .step { text-align: center; position: relative; z-index: 1; flex: 1; }
.progress-tracker .step .circle { width: 50px; height: 50px; border-radius: 50%; background: white; border: 3px solid #e2e8f0; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-weight: 700; color: #94a3b8; transition: all 0.3s; }
.progress-tracker .step.active .circle { border-color: var(--primary-light); background: var(--gradient-light); color: white; box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.15); }
.progress-tracker .step.completed .circle { border-color: var(--success); background: var(--success); color: white; }
.progress-tracker .step.rejected .circle { border-color: var(--danger); background: var(--danger); color: white; }
.progress-tracker .step .label { font-size: 0.78rem; color: #64748b; font-weight: 500; }
.progress-tracker .step.active .label, .progress-tracker .step.completed .label { color: var(--dark); font-weight: 600; }

/* === MODAL === */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal { background: white; border-radius: 12px; width: 100%; max-width: 550px; max-height: 90vh; overflow-y: auto; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.modal-header { padding: 18px 25px; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: white; z-index: 10; border-radius: 12px 12px 0 0; }
.modal-header h3 { color: var(--primary-dark); font-size: 1.1rem; }
.modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #94a3b8; }
.modal-body { padding: 25px; }
.modal-footer { padding: 15px 25px; border-top: 1px solid #e2e8f0; display: flex; justify-content: flex-end; gap: 10px; }

/* === MISC === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: 10px; } .mt-3 { margin-top: 15px; } .mt-4 { margin-top: 20px; }
.mb-2 { margin-bottom: 10px; } .mb-3 { margin-bottom: 15px; } .mb-4 { margin-bottom: 20px; }
.empty-state { text-align: center; padding: 50px 20px; color: #94a3b8; }
.empty-state .icon { font-size: 3rem; margin-bottom: 15px; }
.detail-row { display: flex; padding: 10px 0; border-bottom: 1px solid #f1f5f9; }
.detail-row .label { width: 200px; font-weight: 600; color: #64748b; font-size: 0.85rem; }
.detail-row .value { flex: 1; color: #1e293b; font-size: 0.875rem; }
.tabs { display: flex; gap: 5px; margin-bottom: 20px; border-bottom: 2px solid #e2e8f0; flex-wrap: wrap; }
.tab { padding: 10px 20px; cursor: pointer; color: #64748b; font-size: 0.875rem; font-weight: 600; border-bottom: 3px solid transparent; transition: all 0.2s; text-decoration: none; display: inline-block; }
.tab:hover { color: var(--primary); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* === BOTTOM NAV (Mobile) === */
.bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: white; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 100; justify-content: space-around; padding: 8px 0; }
.bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; color: #64748b; font-size: 0.7rem; padding: 5px 15px; border-radius: 10px; }
.bottom-nav a .icon { font-size: 1.3rem; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.bottom-nav a.active { color: var(--primary); font-weight: 600; }
.bottom-nav a.active .icon { background: var(--gradient-light); color: white; }

/* === LAYOUT 3 KOLOM (HALAMAN DAFTAR) === */
.daftar-wrapper {
    min-height: 100vh;
    background: var(--gradient);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.daftar-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 350px 1fr 1fr;
    gap: 25px;
    align-items: start;
}
.payment-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    position: sticky;
    top: 20px;
}
.payment-card-header {
    background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    color: white;
    padding: 20px;
    text-align: center;
}
.payment-card-header h2 { font-size: 1.2rem; margin-bottom: 5px; }
.payment-card-header p { font-size: 0.8rem; opacity: 0.9; }
.payment-card-body { padding: 25px; }
.bank-detail {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 15px;
}
.bank-detail .bank-name { font-size: 0.9rem; color: #64748b; margin-bottom: 5px; }
.bank-detail .account-number { font-size: 1.8rem; font-weight: 800; color: var(--primary-dark); letter-spacing: 2px; }
.bank-detail .account-name { 
    font-size: 1.1rem; font-weight: 700; color: white;
    background: var(--success); padding: 8px; border-radius: 8px;
    margin-top: 10px; display: inline-block;
}
.payment-amount-list { list-style: none; margin-top: 20px; }
.payment-amount-list li {
    display: flex; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px solid #e2e8f0; font-size: 0.9rem;
}
.payment-amount-list li:last-child { border-bottom: none; }
.payment-amount-list li span:last-child { font-weight: 700; color: var(--primary); }
.form-card {
    background: white; border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 30px;
}
.form-card h3 {
    color: var(--primary-dark); font-size: 1.1rem;
    margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    display: flex; align-items: center; gap: 8px;
}
.form-card .form-group { margin-bottom: 15px; }
.submit-row { grid-column: 1 / -1; margin-top: 10px; }

/* === RESPONSIVE (MOBILE) === */
@media (max-width: 992px) {
    .daftar-container { grid-template-columns: 1fr; }
    .payment-card { position: static; }
}

@media (max-width: 768px) {
    .mobile-header { display: flex; }
    .bottom-nav { display: flex; }
    
    .navbar { padding: 15px 20px; }
    .navbar-nav { gap: 15px; }
    .navbar-nav li a:not(.btn) { display: none; }
    .navbar-nav li a.btn { display: block; }

    .hero { flex-direction: column; text-align: center; padding: 40px 20px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }

    .landing-stats { grid-template-columns: 1fr 1fr; gap: 15px; padding: 30px 20px; }
    .landing-stat-card { padding: 15px; }
    .landing-stat-card h3 { font-size: 1.8rem; }
    .info-section { padding: 30px 20px; }

    .sidebar { transform: translateX(-100%); z-index: 1001; }
    .sidebar.active { transform: translateX(0); }
    .main-content { margin-left: 0; padding: 15px; padding-bottom: 80px; width: 100%; }

    .table-responsive { border-radius: 12px; }
    table thead { display: none; }
    table, table tbody, table tr, table td { display: block; width: 100%; }
    table tr { margin-bottom: 15px; border: 1px solid #e2e8f0; border-radius: 12px; padding: 10px; background: white; }
    table td { display: flex; justify-content: space-between; align-items: center; text-align: right; border-bottom: 1px solid #f1f5f9; padding: 8px 0; }
    table td::before { content: attr(data-label); font-weight: 600; color: #64748b; text-align: left; padding-right: 15px; }
    table td:last-child { border-bottom: none; }

    .progress-tracker { flex-direction: column; gap: 25px; align-items: center; }
    .progress-tracker::before { top: 25px; bottom: 25px; left: 44px; width: 3px; height: auto; right: auto; }
    .progress-tracker .step { width: 100%; flex-direction: row; gap: 15px; text-align: left; }
    .progress-tracker .step .circle { margin: 0; }

    .btn { padding: 14px 20px; }
    .form-control { padding: 14px 16px; font-size: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    
    .auth-left { display: block; padding: 25px 20px; }
    .auth-left h1 { font-size: 1.5rem; }
    .auth-left p { font-size: 0.85rem; margin-bottom: 15px; }
    .auth-features { display: none; }
    
    .auth-card { flex-direction: column; max-width: 450px; min-height: auto; }
    .auth-right { padding: 30px 20px; max-height: none; }
    
    .detail-row { flex-direction: column; }
    .detail-row .label { width: 100%; margin-bottom: 2px; font-size: 0.75rem; }
    .detail-row .value { font-size: 0.9rem; font-weight: 600; }
}

/* Custom Scrollbar */
.auth-right::-webkit-scrollbar,
.auth-left::-webkit-scrollbar { width: 8px; }
.auth-right::-webkit-scrollbar-track,
.auth-left::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
.auth-right::-webkit-scrollbar-thumb,
.auth-left::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.auth-right::-webkit-scrollbar-thumb:hover,
.auth-left::-webkit-scrollbar-thumb:hover { background: #94a3b8; }