:root {
    --bg-dark: #070913;
    --bg-surface: rgba(15, 23, 42, 0.75);
    --border-glass: rgba(255, 255, 255, 0.12);
    --cyan-glow: #00f2fe;
    --purple-glow: #9b51e0;
    --gold-glow: #f59e0b;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-3d-out: 0 10px 30px rgba(0, 0, 0, 0.6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- STICKY GLASS NAVBAR --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 19, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--cyan-glow);
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

/* --- PROFILE DROPDOWN STYLES --- */
.user-profile-menu-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 8px;
}

.profile-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 5px 14px 5px 6px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.profile-trigger-btn:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: var(--cyan-glow);
    box-shadow: 0 0 18px rgba(0, 242, 254, 0.3);
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f2fe, #3b82f6);
    color: #070913;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.profile-meta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.profile-name {
    font-size: 0.84rem;
    font-weight: 700;
    color: #f8fafc;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role-pill {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--cyan-glow);
    letter-spacing: 0.04em;
}

.dropdown-arrow {
    font-size: 0.72rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.dropdown-arrow.open {
    transform: rotate(180deg);
}

.profile-dropdown-card {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 270px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
    display: none;
    z-index: 10000;
    animation: fadeInDrop 0.22s ease-out forwards;
}

@keyframes fadeInDrop {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-user-header {
    padding: 4px 6px 10px;
}

.dropdown-full-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
}

.dropdown-identifier {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 3px;
}

.sub-role-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c084fc;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 12px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 10px 0;
}

.dropdown-section-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0 6px 6px;
}

.roles-quick-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.role-switch-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 10px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.role-switch-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cyan-glow);
}

.role-item-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.role-item-name i {
    font-size: 0.9rem;
    width: 16px;
}

.active-role-item {
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--cyan-glow);
}

.dropdown-logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #f87171;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.25s ease;
    margin-top: 4px;
}

.dropdown-logout-btn:hover {
    background: rgba(239, 68, 68, 0.22);
    border-color: #f87171;
    transform: translateY(-1px);
}

/* Right Action Area */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(18, 140, 126, 0.25));
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #4ade80;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    padding: 7px 15px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
    transition: var(--transition-smooth);
}

.btn-header-wa:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(34, 197, 94, 0.55);
}

.btn-nav-portal {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #00f2fe, #3b82f6);
    color: #070913;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    padding: 7px 16px;
    border-radius: 30px;
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.3);
    transition: var(--transition-smooth);
}

.btn-nav-portal:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 242, 254, 0.55);
}

.menu-toggle-btn {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
}

.menu-toggle-btn:hover {
    border-color: var(--cyan-glow);
    color: var(--cyan-glow);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

/* --- MOBILE OVERLAY & DRAWER --- */
.mobile-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    background: rgba(4, 6, 14, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    background: rgba(10, 15, 30, 0.98);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    padding: 1.5rem 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-link {
    text-decoration: none;
    color: #f1f5f9;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 13px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--cyan-glow);
    color: var(--cyan-glow);
    padding-left: 22px;
}

.mobile-wa-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(18, 140, 126, 0.25));
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
    font-weight: 800;
    margin-top: 6px;
}

.mobile-wa-card:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .header-actions .btn-header-wa {
        display: none;
    }
    .menu-toggle-btn {
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 1.1rem;
    }
    .brand-logo span {
        font-size: 1.1rem;
    }
}

/* Floating WhatsApp Bot */
.wa-floating-bot {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 997;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-bot-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.wa-bot-btn:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

.wa-icon {
    font-size: 1.7rem;
}

.wa-ping-pulse {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: waPulse 2s infinite ease-out;
    z-index: 1;
    pointer-events: none;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.wa-tooltip {
    position: absolute;
    right: 66px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.wa-floating-bot:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .wa-floating-bot {
        bottom: 20px;
        right: 20px;
    }
    .wa-bot-btn {
        width: 48px;
        height: 48px;
    }
    .wa-icon {
        font-size: 1.5rem;
    }
    .wa-tooltip {
        display: none;
    }
}

/* asset/css/index.css - Profile Dropdown & Dashboard Button Alignment Fix */

.profile-dropdown-card {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 300px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
    display: none;
    z-index: 10000;
}

.dropdown-dashboard-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.18), rgba(59, 130, 246, 0.22));
    border: 1px solid rgba(0, 242, 254, 0.4);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    margin: 8px 0;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.15);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.dropdown-dashboard-btn:hover {
    background: linear-gradient(135deg, #00f2fe, #3b82f6);
    color: #070913;
    border-color: #00f2fe;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.45);
}

.dropdown-dashboard-btn .dash-left {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-dashboard-btn .dash-left i {
    font-size: 0.95rem;
    flex-shrink: 0;
}

.dropdown-dashboard-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 5px 14px 5px 6px;
    border-radius: 30px;
    cursor: pointer;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.profile-meta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.profile-name {
    font-size: 0.84rem;
    font-weight: 700;
    color: #f8fafc;
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role-pill {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--cyan-glow, #00f2fe);
    letter-spacing: 0.04em;
}

.role-switch-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 10px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.role-switch-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cyan-glow, #00f2fe);
}

.active-role-item {
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--cyan-glow, #00f2fe);
}

.dropdown-logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #f87171;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.25s ease;
    margin-top: 6px;
}

.dropdown-logout-btn:hover {
    background: rgba(239, 68, 68, 0.22);
    border-color: #f87171;
    transform: translateY(-1px);
}

/* Registration Custom Styles */
.register-card {
    max-width: 500px !important;
}

.auth-divider-or {
    position: relative;
    text-align: center;
    margin: 1.6rem 0 1.2rem;
}

.auth-divider-or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.auth-divider-or span {
    position: relative;
    z-index: 2;
    background: #0f172a;
    padding: 0 14px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.btn-oauth-assist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-oauth-assist:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ==========================================================================
   AUTH & REGISTRATION GLASSMORPHIC STYLING (PURE CSS)
   ========================================================================== */

.auth-page-wrapper {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 1.25rem;
    position: relative;
    z-index: 1;
}

.auth-glass-card {
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    padding: 2.5rem 2.2rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 1px 2px rgba(255, 255, 255, 0.12);
    position: relative;
}

.register-card {
    max-width: 500px !important;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.35);
    color: var(--cyan-glow, #00f2fe);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.auth-sub {
    font-size: 0.88rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.5;
}

.auth-input-group {
    margin-bottom: 1.15rem;
    text-align: left;
}

.auth-input-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.4rem;
}

.input-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-box i.input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted, #94a3b8);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.auth-field {
    width: 100%;
    background: rgba(9, 14, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 12px 14px 12px 42px;
    border-radius: 12px;
    font-size: 0.92rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.auth-field:focus {
    border-color: var(--cyan-glow, #00f2fe);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

.auth-field:focus ~ i.input-icon,
.input-box:focus-within i.input-icon {
    color: var(--cyan-glow, #00f2fe);
}

.toggle-pass {
    position: absolute;
    right: 14px;
    color: var(--text-muted, #94a3b8);
    cursor: pointer;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.toggle-pass:hover {
    color: var(--cyan-glow, #00f2fe);
}

.btn-submit-auth {
    width: 100%;
    background: linear-gradient(135deg, #00f2fe, #3b82f6);
    color: #070913;
    border: none;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 0 22px rgba(0, 242, 254, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
}

.btn-submit-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(0, 242, 254, 0.6);
}

.auth-divider-or {
    position: relative;
    text-align: center;
    margin: 1.5rem 0 1.2rem;
}

.auth-divider-or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.auth-divider-or span {
    position: relative;
    z-index: 2;
    background: #0f172a;
    padding: 0 14px;
    color: var(--text-muted, #94a3b8);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.btn-oauth-assist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.btn-oauth-assist:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.auth-alert {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.auth-alert.success { background: rgba(34, 197, 94, 0.2); border: 1px solid #4ade80; color: #4ade80; }
.auth-alert.error   { background: rgba(239, 68, 68, 0.2); border: 1px solid #f87171; color: #f87171; }

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    color: var(--text-muted, #94a3b8);
}

.auth-footer a {
    color: var(--cyan-glow, #00f2fe);
    text-decoration: none;
    font-weight: 700;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Volunteer Registration Custom Styles */
.volunteer-card {
    max-width: 680px !important;
    width: 100%;
}

.form-section-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--cyan-glow, #00f2fe);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.no-icon {
    padding-left: 14px !important;
}

.locality-radio-group {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 14px;
    background: rgba(9, 14, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.radio-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #cbd5e1;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    accent-color: var(--cyan-glow, #00f2fe);
    cursor: pointer;
}

.auth-select {
    padding-left: 14px !important;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2394a3b8' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    cursor: pointer;
}

.auth-select option {
    background-color: #0b1329;
    color: #ffffff;
}

.notice-dashed-box {
    border: 1px dashed rgba(248, 113, 113, 0.7);
    background: rgba(239, 68, 68, 0.08);
    color: #f87171;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
    padding: 10px 14px;
    border-radius: 10px;
    margin: 1rem 0 1.2rem;
}

@media (max-width: 600px) {
    .form-grid-2, .form-grid-3 {
        grid-template-columns: 1fr;
    }
    .locality-radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Mentor Registration Specific Styling */
.mentor-card {
    max-width: 680px !important;
    width: 100%;
}

.gst-toggle-card {
    background: rgba(9, 14, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 1.2rem 0;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
    color: #e2e8f0;
}

.custom-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--cyan-glow, #00f2fe);
    cursor: pointer;
}

.gst-details-container {
    background: rgba(15, 23, 42, 0.55);
    border: 1px dashed rgba(0, 242, 254, 0.35);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 1.2rem;
}

/* Teacher Registration Custom Styling */
.teacher-card {
    max-width: 720px !important;
    width: 100%;
}

.modes-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 6px;
}

.mode-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(9, 14, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mode-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
    background: rgba(15, 23, 42, 0.95);
    transform: translateY(-2px);
}

.mode-card input[type="radio"] {
    accent-color: var(--cyan-glow, #00f2fe);
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.mode-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mode-heading {
    font-size: 0.84rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.mode-sub {
    font-size: 0.74rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .modes-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Custom Multi-Select Dropdown Container */
.custom-multiselect-container {
    position: relative;
    width: 100%;
}

.custom-select-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: rgba(9, 14, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.custom-select-btn:hover {
    border-color: var(--cyan-glow, #00f2fe);
    background: rgba(15, 23, 42, 0.95);
}

.multiselect-arrow {
    font-size: 12px;
    color: var(--text-muted, #94a3b8);
    transition: transform 0.25s ease;
}

.multiselect-arrow.open {
    transform: rotate(180deg);
}

/* Floating Options List */
.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 8px;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    z-index: 1050;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
}

.multiselect-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #e2e8f0;
    font-size: 0.86rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.multiselect-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cyan-glow, #00f2fe);
}

.multiselect-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--cyan-glow, #00f2fe);
    cursor: pointer;
}

/* Custom Scrollbar for Options */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}
.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Witness Red Dashed Note */
.witness-note {
    border: 1px dashed rgba(248, 113, 113, 0.6);
    background: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 10px;
    margin: 1rem 0 1.2rem;
}

.witness-note strong {
    color: #f87171;
}