/* ========================================
   Cek Rekening EchoPay - Premium Design
   ======================================== */

:root {
    --primary: #00bf72;
    --primary-hover: #00a563;
    --primary-dark: #008f55;
    --primary-gradient: linear-gradient(135deg, #00bf72 0%, #009e5e 50%, #008f55 100%);
    --primary-glow: rgba(0, 191, 114, 0.15);
    --sidebar-bg: #0f1117;
    --sidebar-hover: #1a1d26;
    --sidebar-active: #1e2230;
    --body-bg: #f5f7fa;
    --card-bg: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-light: #e8ecf1;
    --border-subtle: #f1f5f9;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --card-shadow-hover: 0 10px 25px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========================================
   PUBLIC PAGE (Homepage)
   ======================================== */

.public-body {
    background: linear-gradient(160deg, #00bf72 0%, #009e5e 40%, #006b3f 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.public-body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.public-body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,0,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.public-navbar {
    background: rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
}

.public-navbar .navbar-brand {
    color: #fff !important;
    letter-spacing: -0.3px;
    font-weight: 700;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.check-card {
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.check-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.check-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-md);
    padding: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.check-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.check-btn:hover::after {
    left: 100%;
}

.check-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 114, 0.35);
}

.check-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    background: #adb5bd;
}

.result-card {
    border-radius: var(--radius-xl);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
}

.result-card.result-success {
    border-left: 4px solid #198754;
}

.result-card.result-failed {
    border-left: 4px solid #dc3545;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.public-footer {
    margin-top: auto;
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.public-footer .text-muted {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* Bank Dropdown */
.bank-dropdown {
    max-height: 350px;
    overflow-y: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-light);
    z-index: 1050;
}

.bank-dropdown .dropdown-item {
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.bank-dropdown .dropdown-item:hover {
    background: #f0fdf4;
}

.bank-dropdown .dropdown-header {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    padding: 8px 16px;
    background: #f8f9fa;
    position: sticky;
    top: 0;
    font-weight: 600;
}

.bank-dropdown::-webkit-scrollbar { width: 5px; }
.bank-dropdown::-webkit-scrollbar-track { background: transparent; }
.bank-dropdown::-webkit-scrollbar-thumb { background: #d4d4d4; border-radius: 3px; }

/* ========================================
   AUTH PAGES (Login / Register / Setup)
   ======================================== */

.auth-body {
    background: linear-gradient(160deg, #00bf72 0%, #009e5e 40%, #006b3f 100%);
    min-height: 100vh;
    position: relative;
}

.auth-body::before {
    content: '';
    position: fixed;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auth-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 191, 114, 0.3);
}

.auth-icon i {
    font-size: 1.6rem;
    color: #fff;
}

/* ========================================
   ADMIN LAYOUT
   ======================================== */

.admin-body {
    background: var(--body-bg);
    min-height: 100vh;
}

.admin-navbar {
    background: var(--sidebar-bg) !important;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    min-width: 260px;
    background-color: var(--sidebar-bg) !important;
    color: #cdd6e0;
}

@media (min-width: 992px) {
    .admin-sidebar {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
        z-index: 1040;
    }
}

.sidebar-brand {
    font-size: 1.1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-brand i { color: var(--primary); }

.sidebar-nav { padding: 10px 15px; }

.sidebar-nav .nav-link {
    color: #9ca3af;
    padding: 12px 16px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    background: transparent;
}

.sidebar-nav .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(3px);
}

.sidebar-nav .nav-link.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 191, 114, 0.18) 0%, rgba(0, 191, 114, 0.04) 100%);
    border-left: 3px solid var(--primary);
}

.sidebar-nav .nav-link i {
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
    transition: var(--transition);
    color: #6b7280;
}

.sidebar-nav .nav-link:hover i { color: #d1d5db; }
.sidebar-nav .nav-link.active i { color: var(--primary); }

/* Sidebar Footer */
.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.sidebar-user-info { display: flex; flex-direction: column; }
.sidebar-user-info .user-name { color: #fff; font-size: 0.85rem; font-weight: 600; line-height: 1.2; }
.sidebar-user-info .user-role { color: #6b7280; font-size: 0.75rem; font-weight: 500; }

.btn-sidebar-primary {
    background: linear-gradient(90deg, rgba(0, 191, 114, 0.12) 0%, rgba(0, 191, 114, 0.04) 100%);
    color: var(--primary);
    border: 1px solid rgba(0, 191, 114, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-sidebar-primary:hover {
    background: rgba(0, 191, 114, 0.18);
    color: #fff;
    border-color: rgba(0, 191, 114, 0.3);
    transform: translateY(-1px);
}

.btn-sidebar-danger {
    background: transparent;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-sidebar-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.25);
}

.admin-main {
    flex: 1;
    padding: 24px 30px;
    overflow-x: hidden;
}

.admin-content-header h4 { color: var(--text-primary); }

/* ========================================
   USER LAYOUT (Navbar + Footer)
   ======================================== */

.user-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    transition: var(--transition);
}

.user-navbar .navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary) !important;
    font-size: 1.15rem;
}

.user-navbar .navbar-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 191, 114, 0.25);
}

.user-navbar .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.user-navbar .nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-glow);
}

.user-navbar .nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-glow);
}

.user-navbar .user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 6px rgba(0, 191, 114, 0.2);
}

.user-dropdown .dropdown-menu {
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
}

.user-dropdown .dropdown-item {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition);
    color: var(--text-primary);
}

.user-dropdown .dropdown-item:hover {
    background: #f0fdf4;
    color: var(--primary);
}

.user-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
}

.user-dropdown .dropdown-item:hover i {
    color: var(--primary);
}

.user-footer {
    background: #fff;
    border-top: 1px solid var(--border-light);
    padding: 28px 0;
}

.user-footer .footer-brand {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.user-footer .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
}

.user-footer .footer-links a:hover {
    color: var(--primary);
}

.user-footer .footer-copy {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ========================================
   STATS CARDS
   ======================================== */

.stats-card {
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ========================================
   TABLES (Premium Design)
   ======================================== */

.table {
    border-collapse: separate;
    border-spacing: 0 6px;
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    white-space: nowrap;
    border: none;
    padding: 12px 20px;
    background: transparent !important;
}

.table td {
    vertical-align: middle;
    font-size: 0.875rem;
    background: #ffffff;
    padding: 14px 20px;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    color: #334155;
}

.table tbody tr {
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.table tbody tr:hover td { background: #fafbfc; }
.table td:first-child { border-left: 1px solid var(--border-subtle); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.table td:last-child { border-right: 1px solid var(--border-subtle); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.badge-sm {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

/* ========================================
   CARDS
   ======================================== */

.card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
}

.card-header {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    border-bottom: 1px solid var(--border-light);
}

.glass-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--card-shadow-hover);
}

/* ========================================
   FORM CONTROLS
   ======================================== */

.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-light);
    padding: 10px 14px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-control-lg {
    padding: 14px 18px;
    font-size: 1rem;
}

.btn {
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 191, 114, 0.25);
}

/* ========================================
   ANIMATIONS
   ======================================== */

.cooldown-notice { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important; }

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991.98px) {
    .admin-sidebar { width: 280px; min-width: auto; }
    .admin-main { padding: 16px; }
    .admin-wrapper { display: block; }
}

@media (max-width: 575.98px) {
    .auth-card { padding: 1.5rem; margin: 1rem; }
    .check-card .card-body { padding: 1.25rem !important; }
    .hero-icon { width: 64px; height: 64px; }
    .hero-icon i { font-size: 1.8rem; }
    .user-footer .footer-row { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d4d4d4; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #b0b0b0; }

/* ========================================
   ALERTS
   ======================================== */

.alert {
    border-radius: var(--radius-md);
    border: none;
    font-size: 0.88rem;
    font-weight: 500;
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination .page-link {
    border-radius: var(--radius-sm) !important;
    margin: 0 2px;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 6px 12px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary-glow);
    color: var(--primary);
    border-color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 191, 114, 0.25);
}

.text-hover-white:hover { opacity: 1 !important; }

/* ========================================
   AUTH PAGES (Login / Register)
   ======================================== */

.auth-page {
    position: relative;
    z-index: 10;
}

/* Brand Panel (Left side desktop) */
.auth-brand-panel {
    padding-right: 2rem;
}

.auth-brand-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: float 3s ease-in-out infinite;
}

.auth-brand-icon-sm {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.auth-brand-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.auth-brand-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 420px;
}

/* Feature Items */
.auth-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.auth-feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
}

.auth-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #34d399;
}

/* Auth Card */
.auth-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: cardSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card-header {
    margin-bottom: 1.75rem;
}

.auth-card-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 0.35rem;
}

.auth-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Form Fields */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.auth-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 1rem;
    z-index: 2;
    transition: color 0.2s;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    height: 52px;
    padding: 0 48px 0 46px;
    border: 2px solid var(--border-light);
    border-radius: 14px;
    background: #f8fafc;
    font-size: 0.92rem;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
    font-family: 'Inter', sans-serif;
}

.auth-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.auth-input:focus ~ .auth-input-icon,
.auth-input:focus + .auth-input-icon {
    color: var(--primary);
}

.auth-input-wrap:focus-within .auth-input-icon {
    color: var(--primary);
}

.auth-input::placeholder {
    color: var(--text-muted);
}

.auth-toggle-pass {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 1.05rem;
    transition: color 0.2s;
    z-index: 2;
}

.auth-toggle-pass:hover {
    color: var(--primary);
}

.auth-field-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Submit Button */
.auth-submit-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 191, 114, 0.3);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 114, 0.4);
}

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-submit-arrow {
    transition: transform 0.3s;
}

.auth-submit-btn:hover .auth-submit-arrow {
    transform: translateX(4px);
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.auth-divider span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Alt Text */
.auth-alt-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.auth-alt-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.auth-alt-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Footer Text */
.auth-footer-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ========================================
   AUTH RESPONSIVE
   ======================================== */

@media (max-width: 991.98px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .auth-card-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 575.98px) {
    .auth-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
    
    .auth-input {
        height: 48px;
        font-size: 0.88rem;
    }
    
    .auth-submit-btn {
        height: 50px;
        font-size: 0.9rem;
    }
    
    .auth-card-title {
        font-size: 1.25rem;
    }
}
