/* /Components/Layout/AppLayout.razor.rz.scp.css */
/* === Main Layout Structure === */
.page[b-s9ju0oaril] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-s9ju0oaril] {
    flex: 1;
    background-color: #faf7ff;
}

/* === Sidebar === */
.sidebar[b-s9ju0oaril] {
    background: linear-gradient(180deg, #2E1065 0%, #4C1D95 100%) !important;
    box-shadow: 3px 0 12px rgba(46, 16, 101, 0.25);
    z-index: 1000;
}

/* === Top Header === */
.top-header[b-s9ju0oaril] {
    background: linear-gradient(135deg, #4C1D95 0%, #8B5CF6 55%, #E048B0 100%);
    box-shadow: 0 4px 16px rgba(76, 29, 149, 0.3);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-main[b-s9ju0oaril] {
    padding: 1rem 2rem;
    min-height: 80px;
}

/* === Logo and Branding === */
.brand-section[b-s9ju0oaril] { color: white; }
.logo-container[b-s9ju0oaril] { position: relative; }

.app-logo[b-s9ju0oaril] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.app-logo:hover[b-s9ju0oaril] {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}
.logo-image[b-s9ju0oaril] { width: 36px; height: auto; display: block; transition: transform 0.3s ease; }
.app-logo:hover .logo-image[b-s9ju0oaril] { transform: scale(1.06); }

.brand-title[b-s9ju0oaril] { font-size: 26px; font-weight: 800; color: white; letter-spacing: -0.4px; margin: 0; }
.brand-tagline[b-s9ju0oaril] { font-size: 13px; color: rgba(255, 255, 255, 0.85); font-style: italic; margin: 0; font-weight: 300; }

/* === User Section (top header) === */
.user-section[b-s9ju0oaril] { color: white; }
.user-info[b-s9ju0oaril] { text-align: right; }
.user-greeting[b-s9ju0oaril] { font-size: 16px; margin-bottom: 4px; }
.welcome-text[b-s9ju0oaril] { color: rgba(255, 255, 255, 0.9); font-weight: 300; }
.username[b-s9ju0oaril] { color: white; font-weight: 700; font-size: 17px; }

.logout-btn[b-s9ju0oaril] {
    background: linear-gradient(180deg, #F9A8D4 0%, #E048B0 45%, #A21CAF 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 4px 12px rgba(192, 38, 211, 0.35);
    position: relative;
    overflow: hidden;
}
.logout-btn:hover[b-s9ju0oaril] {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 6px 16px rgba(192, 38, 211, 0.45);
    color: white;
}
.logout-btn:active[b-s9ju0oaril] { transform: translateY(0); }

/* === Sub Header === */
.header-sub[b-s9ju0oaril] {
    background: rgba(0, 0, 0, 0.14);
    padding: 7px 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}
.breadcrumb-section[b-s9ju0oaril] { color: rgba(255, 255, 255, 0.9); font-size: 13px; font-weight: 500; }
.system-status[b-s9ju0oaril] { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.8); font-size: 12px; }
.status-indicator[b-s9ju0oaril] {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ADE80;
    animation: jv-app-pulse-b-s9ju0oaril 2s infinite;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
}

@keyframes jv-app-pulse-b-s9ju0oaril {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === Content Area === */
.content[b-s9ju0oaril] {
    background: transparent;
    min-height: calc(100vh - 140px);
    padding: 2rem !important;
}

/* ============================================================
   Sidebar header (brand + user welcome) — mirrors nav-header
   ============================================================ */
.nav-header[b-s9ju0oaril] {
    background: linear-gradient(135deg, #4C1D95 0%, #8B5CF6 100%);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.nav-brand-section[b-s9ju0oaril] { display: flex; align-items: center; margin-bottom: 0.75rem; position: relative; z-index: 2; }
.nav-logo-container[b-s9ju0oaril] { margin-right: 12px; }

.nav-app-logo[b-s9ju0oaril] {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}
.nav-logo-image[b-s9ju0oaril] { width: 30px; height: auto; display: block; }

.nav-brand-info[b-s9ju0oaril] { flex: 1; }
.nav-brand-title[b-s9ju0oaril] { font-size: 20px; font-weight: 800; color: white; margin: 0; letter-spacing: -0.3px; }
.nav-brand-subtitle[b-s9ju0oaril] { color: rgba(255, 255, 255, 0.85); font-size: 11px; font-weight: 400; margin: 0; }

.nav-user-welcome[b-s9ju0oaril] { position: relative; z-index: 2; }
.nav-user-info[b-s9ju0oaril] { display: flex; align-items: center; color: white; font-size: 14px; }
.nav-username[b-s9ju0oaril] { font-weight: 600; }

/* === Navigation scrollable body === */
.nav-scrollable[b-s9ju0oaril] {
    display: block;
    height: calc(100vh - 160px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    background: linear-gradient(180deg, #3B1476 0%, #2E1065 60%, #1E0B36 100%);
}
.nav-scrollable[b-s9ju0oaril]::-webkit-scrollbar { width: 4px; }
.nav-scrollable[b-s9ju0oaril]::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.3); border-radius: 2px; }

/* === Navigation Menu Sections === */
.nav-menu-section[b-s9ju0oaril] { padding: 0.75rem 0; }

.nav-section-title[b-s9ju0oaril] {
    display: flex; align-items: center;
    padding: 0.4rem 1rem; margin-bottom: 0.25rem;
    font-size: 11px; font-weight: 700;
    color: rgba(221, 214, 254, 0.8);
    text-transform: uppercase; letter-spacing: 0.7px;
}
.nav-section-title.admin-section[b-s9ju0oaril] { color: rgba(244, 114, 182, 0.9); }

/* === Nav Links === */
.nav-item[b-s9ju0oaril] { font-size: 0.9rem; margin-bottom: 2px; position: relative; }

.nav-item[b-s9ju0oaril]  .nav-link {
    color: rgba(255, 255, 255, 0.88);
    background: none; border: none; border-radius: 8px;
    height: auto; padding: 10px 14px; margin: 0 8px;
    display: flex; align-items: center; line-height: 1.4;
    width: calc(100% - 16px);
    text-decoration: none; position: relative; overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-content[b-s9ju0oaril] { display: flex; align-items: center; flex: 1; position: relative; z-index: 2; }
.nav-link-icon[b-s9ju0oaril] { font-size: 16px; margin-right: 12px; transition: all 0.25s ease; opacity: 0.9; }
.nav-link-text[b-s9ju0oaril] { font-weight: 500; font-size: 14px; }

.nav-link-indicator[b-s9ju0oaril] {
    position: absolute; left: 0; top: 50%;
    width: 3px; height: 0;
    background: #F472B6;
    border-radius: 2px;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}

.nav-item[b-s9ju0oaril]  .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: translateX(4px);
}
.nav-item[b-s9ju0oaril]  .nav-link:hover .nav-link-icon { opacity: 1; transform: scale(1.1); }
.nav-item[b-s9ju0oaril]  .nav-link:hover .nav-link-indicator { height: 20px; background: rgba(255, 255, 255, 0.8); }

.nav-item[b-s9ju0oaril]  a.active {
    background: rgba(255, 255, 255, 0.16);
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transform: translateX(4px);
    border-left: 3px solid #F472B6;
}
.nav-item[b-s9ju0oaril]  a.active .nav-link-indicator { height: 24px; background: #F472B6; box-shadow: 0 0 8px rgba(244, 114, 182, 0.6); }
.nav-item[b-s9ju0oaril]  a.active .nav-link-icon { opacity: 1; transform: scale(1.1); color: #F472B6; }

/* === Administration section (separated) === */
.nav-admin-section[b-s9ju0oaril] { margin-top: auto; padding-top: 0.5rem; }

.nav-section-divider[b-s9ju0oaril] {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    margin: 0.75rem 1.5rem;
}

.nav-item[b-s9ju0oaril]  .admin-link {
    background: rgba(244, 114, 182, 0.08);
    border: 1px solid rgba(244, 114, 182, 0.2);
}
.nav-item[b-s9ju0oaril]  .admin-link:hover {
    background: rgba(244, 114, 182, 0.18);
    border-color: rgba(244, 114, 182, 0.35);
}
.nav-item[b-s9ju0oaril]  .admin-link.active {
    background: rgba(244, 114, 182, 0.25);
    border-color: rgba(244, 114, 182, 0.5);
    border-left: 3px solid #F472B6;
}
.admin-indicator[b-s9ju0oaril] { background: #F472B6 !important; }

/* === System Status === */
.nav-system-status[b-s9ju0oaril] { padding: 0.75rem 1rem; margin-top: 0.5rem; }
.system-status-item[b-s9ju0oaril] { display: flex; align-items: center; gap: 8px; }
.status-dot[b-s9ju0oaril] {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ADE80;
    animation: jv-app-pulse-b-s9ju0oaril 2s infinite;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
}
.status-text[b-s9ju0oaril] { color: rgba(221, 214, 254, 0.75); font-size: 11px; font-weight: 500; }

/* ============================================================
   Mobile drawer
   ============================================================ */
.ml-overlay[b-s9ju0oaril] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 11, 54, 0.55);
    z-index: 1050;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}

.ml-nav-open .ml-overlay[b-s9ju0oaril] {
    pointer-events: auto;
}

.ml-mobile-bar[b-s9ju0oaril] { display: none; }

.ml-hamburger[b-s9ju0oaril] {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1.25rem;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: background 0.2s ease;
    padding: 0;
    position: relative;
    z-index: 1101;
    touch-action: manipulation;
}
.ml-hamburger:hover[b-s9ju0oaril], .ml-hamburger:focus[b-s9ju0oaril] { background: rgba(255, 255, 255, 0.28); outline: none; }

.ml-mobile-brand[b-s9ju0oaril] { flex: 1; display: flex; align-items: center; gap: 0.5rem; overflow: hidden; }
.ml-mobile-logo[b-s9ju0oaril] { width: 32px; height: auto; flex-shrink: 0; }
.ml-mobile-app[b-s9ju0oaril] { color: white; font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ml-mobile-logout[b-s9ju0oaril] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: background 0.2s ease;
    padding: 0;
}
.ml-mobile-logout:hover[b-s9ju0oaril], .ml-mobile-logout:focus[b-s9ju0oaril] { background: rgba(255, 255, 255, 0.28); outline: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
    .top-header[b-s9ju0oaril] { display: none; }

    .ml-mobile-bar[b-s9ju0oaril] {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #4C1D95 0%, #8B5CF6 100%);
        padding: 0.6rem 0.875rem;
        position: sticky;
        top: 0;
        z-index: 1001;
        box-shadow: 0 2px 8px rgba(76, 29, 149, 0.35);
        gap: 0.75rem;
    }

    .sidebar[b-s9ju0oaril] {
        position: fixed;
        top: 0; left: 0;
        width: 260px;
        height: 100vh;
        height: 100dvh;
        z-index: 1100;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
    }
    .ml-nav-open .sidebar[b-s9ju0oaril] { transform: translateX(0); box-shadow: 4px 0 20px rgba(0, 0, 0, 0.35); }
    .ml-nav-open .ml-overlay[b-s9ju0oaril] { display: block; }

    .content[b-s9ju0oaril] { padding: 1rem !important; }
}

@media (max-width: 576px) {
    .content[b-s9ju0oaril] { padding: 0.75rem !important; }
}

@media (min-width: 769px) {
    .page[b-s9ju0oaril] { flex-direction: row; }
    .sidebar[b-s9ju0oaril] { width: 260px; height: 100vh; position: sticky; top: 0; flex-shrink: 0; }
    .ml-mobile-bar[b-s9ju0oaril] { display: none !important; }
    .ml-overlay[b-s9ju0oaril] { display: none !important; }
    .header-main[b-s9ju0oaril] { padding: 1rem 2rem; }
    .content[b-s9ju0oaril] { padding: 2rem !important; }
    .nav-user-welcome[b-s9ju0oaril] { display: none; }
}

#blazor-error-ui[b-s9ju0oaril] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .dismiss[b-s9ju0oaril] { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-5picqopt9q],
.components-reconnect-repeated-attempt-visible[b-5picqopt9q],
.components-reconnect-failed-visible[b-5picqopt9q],
.components-pause-visible[b-5picqopt9q],
.components-resume-failed-visible[b-5picqopt9q],
.components-rejoining-animation[b-5picqopt9q] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-5picqopt9q],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-5picqopt9q],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-5picqopt9q],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-5picqopt9q],
#components-reconnect-modal.components-reconnect-retrying[b-5picqopt9q],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-5picqopt9q],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-5picqopt9q],
#components-reconnect-modal.components-reconnect-failed[b-5picqopt9q],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-5picqopt9q] {
    display: block;
}


#components-reconnect-modal[b-5picqopt9q] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-5picqopt9q 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-5picqopt9q 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-5picqopt9q 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-5picqopt9q]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-5picqopt9q 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-5picqopt9q {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-5picqopt9q {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-5picqopt9q {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-5picqopt9q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-5picqopt9q] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-5picqopt9q] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-5picqopt9q] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-5picqopt9q] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-5picqopt9q] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-5picqopt9q] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-5picqopt9q 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-5picqopt9q] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-5picqopt9q {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Account/Login.razor.rz.scp.css */
*[b-9bxl8qbbuw], *[b-9bxl8qbbuw]::before, *[b-9bxl8qbbuw]::after { box-sizing: border-box; }

/* ── PAGE ── */
.login-page[b-9bxl8qbbuw] {
    min-height: 100vh;
    width: 100%;
    display: flex;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

/* ══════════════════════════════════════
   BRAND PANEL
══════════════════════════════════════ */
.brand-panel[b-9bxl8qbbuw] {
    flex: 0 0 46%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(148deg, #2E1065 0%, #6D28D9 45%, #A855F7 78%, #E048B0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 44px;
}

.blob[b-9bxl8qbbuw] { position: absolute; border-radius: 50%; pointer-events: none; background: rgba(255,255,255,0.07); }
.blob-1[b-9bxl8qbbuw] { width: 380px; height: 380px; top: -140px; right: -100px; }
.blob-2[b-9bxl8qbbuw] { width: 240px; height: 240px; bottom: -80px; left: -70px; background: rgba(255,255,255,0.09); }
.blob-3[b-9bxl8qbbuw] { width: 130px; height: 130px; top: 52%; right: 28px; background: rgba(244,114,182,0.18); }

.brand-inner[b-9bxl8qbbuw] { position: relative; z-index: 2; text-align: center; max-width: 400px; width: 100%; }
.brand-logo-block[b-9bxl8qbbuw] { margin-bottom: 28px; }

.brand-logo-ring[b-9bxl8qbbuw] {
    width: 88px; height: 88px; border-radius: 50%;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.3);
}
.brand-logo-img[b-9bxl8qbbuw] { width: 62px; height: auto; display: block; }

.brand-name[b-9bxl8qbbuw] { font-family: 'Poppins', 'Segoe UI', sans-serif; font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.4px; line-height: 1.15; margin-bottom: 8px; }
.brand-release[b-9bxl8qbbuw] { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; }

.brand-divider[b-9bxl8qbbuw] { width: 48px; height: 3px; border-radius: 2px; margin: 22px auto; background: linear-gradient(90deg, #C4B5FD, #F472B6); }

.tagline-list[b-9bxl8qbbuw] { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 22px; }
.tagline-item[b-9bxl8qbbuw] {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.92); padding: 9px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; backdrop-filter: blur(6px);
}

.brand-description[b-9bxl8qbbuw] { font-size: 0.85rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 28px; padding: 0 4px; }

.trust-badges[b-9bxl8qbbuw] { display: flex; flex-direction: column; gap: 8px; }
.trust-badge[b-9bxl8qbbuw] {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px; padding: 10px 16px; color: rgba(255,255,255,0.82);
    font-size: 0.82rem; font-weight: 500;
}
.trust-ico[b-9bxl8qbbuw] { flex-shrink: 0; opacity: .9; }

/* ══════════════════════════════════════
   FORM PANEL
══════════════════════════════════════ */
.form-panel[b-9bxl8qbbuw] {
    flex: 1; display: flex; align-items: center; justify-content: center;
    background: #FAF7FF; padding: 48px 32px; overflow-y: auto;
}

.form-inner[b-9bxl8qbbuw] { width: 100%; max-width: 440px; }

.mobile-brand[b-9bxl8qbbuw] { display: none; align-items: center; gap: 12px; margin-bottom: 28px; }
.mobile-logo-ring[b-9bxl8qbbuw] {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    flex-shrink: 0;
}
.mobile-logo-img[b-9bxl8qbbuw] { width: 30px; height: auto; display: block; }
.mobile-brand-name[b-9bxl8qbbuw] { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; color: #3E1F73; }

/* ══════════════════════════════════════
   CONNECTIVITY DOTS (used inline in the ready-badge while checking)
══════════════════════════════════════ */
.conn-dots[b-9bxl8qbbuw] { display: flex; align-items: center; gap: 4px; }
.dot[b-9bxl8qbbuw] {
    width: 7px; height: 7px; border-radius: 50%;
    background: #8B5CF6; animation: dot-bounce-b-9bxl8qbbuw 1.2s ease-in-out infinite;
}
.dot.d1[b-9bxl8qbbuw] { animation-delay: 0s; }
.dot.d2[b-9bxl8qbbuw] { animation-delay: 0.2s; }
.dot.d3[b-9bxl8qbbuw] { animation-delay: 0.4s; }

@keyframes dot-bounce-b-9bxl8qbbuw {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%           { transform: scale(1);   opacity: 1; }
}

/* ══════════════════════════════════════
   CONNECTIVITY CHECK
══════════════════════════════════════ */
.conn-panel[b-9bxl8qbbuw] { text-align: center; padding: 8px 0; }

.conn-icon-ring[b-9bxl8qbbuw] {
    position: relative;
    width: 100px; height: 100px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
}

.conn-ripple[b-9bxl8qbbuw] {
    position: absolute; border-radius: 50%;
    border: 2px solid rgba(139,92,246,0.35);
    animation: conn-ripple-out-b-9bxl8qbbuw 2.2s ease-out infinite;
}
.conn-ripple.r1[b-9bxl8qbbuw] { width: 100%; height: 100%; animation-delay: 0s; }
.conn-ripple.r2[b-9bxl8qbbuw] { width: 140%; height: 140%; animation-delay: 0.55s; border-color: rgba(139,92,246,0.2); }
.conn-ripple.r3[b-9bxl8qbbuw] { width: 180%; height: 180%; animation-delay: 1.1s; border-color: rgba(139,92,246,0.1); }

@keyframes conn-ripple-out-b-9bxl8qbbuw {
    0%   { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1);   opacity: 0; }
}

.conn-icon-inner[b-9bxl8qbbuw] {
    position: relative; z-index: 2;
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #C026D3);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(139,92,246,0.35);
    font-size: 1.85rem;
    animation: conn-icon-pulse-b-9bxl8qbbuw 2s ease-in-out infinite;
}

@keyframes conn-icon-pulse-b-9bxl8qbbuw {
    0%, 100% { transform: scale(1);    box-shadow: 0 8px 28px rgba(139,92,246,0.35); }
    50%       { transform: scale(1.06); box-shadow: 0 12px 36px rgba(139,92,246,0.5); }
}

.conn-title[b-9bxl8qbbuw] { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800; color: #3E1F73; margin-bottom: 10px; letter-spacing: -0.3px; }
.conn-subtitle[b-9bxl8qbbuw] { font-size: 0.875rem; color: #64748b; line-height: 1.55; margin-bottom: 24px; }

.conn-attempt-row[b-9bxl8qbbuw] { margin-bottom: 10px; }
.attempt-badge[b-9bxl8qbbuw] {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    color: #7C3AED; background: #F5F0FF; border: 1px solid #DDD6FE;
    padding: 4px 14px; border-radius: 50px; letter-spacing: 0.3px;
}

.conn-progress-track[b-9bxl8qbbuw] {
    height: 5px; background: #e9e1f7; border-radius: 10px;
    overflow: hidden; margin-bottom: 16px;
}
.conn-progress-fill[b-9bxl8qbbuw] {
    height: 100%; background: linear-gradient(90deg, #7C3AED, #C026D3);
    border-radius: 10px; transition: width 0.5s ease;
}

.conn-status-row[b-9bxl8qbbuw] { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 28px; }
.conn-status-text[b-9bxl8qbbuw] { font-size: 0.85rem; color: #475569; font-weight: 500; }

.conn-checklist[b-9bxl8qbbuw] { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.check-item[b-9bxl8qbbuw] {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; border-radius: 10px; font-size: 0.875rem; font-weight: 500;
    transition: all 0.35s ease;
}
.check-pending[b-9bxl8qbbuw] { background: #f4f1fb; color: #94a3b8; }
.check-done[b-9bxl8qbbuw] { background: #f0fdf4; color: #16A34A; }

/* ══════════════════════════════════════
   CONNECTIVITY FAILED
══════════════════════════════════════ */
.fail-panel[b-9bxl8qbbuw] { text-align: center; padding: 8px 0; }

.fail-icon-ring[b-9bxl8qbbuw] {
    width: 80px; height: 80px; border-radius: 50%;
    background: #fff0f5; border: 2px solid #f5b8d1;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    font-size: 2rem; color: #C026D3;
}

.fail-title[b-9bxl8qbbuw] { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800; color: #86198F; margin-bottom: 12px; letter-spacing: -0.3px; }
.fail-desc[b-9bxl8qbbuw] { font-size: 0.875rem; color: #64748b; line-height: 1.6; margin-bottom: 20px; }

.fail-info-card[b-9bxl8qbbuw] {
    display: flex; align-items: flex-start; gap: 10px;
    background: #fffbeb; border: 1px solid #fde68a;
    border-radius: 12px; padding: 14px 16px;
    font-size: 0.84rem; color: #92400e; text-align: left;
    margin-bottom: 24px; line-height: 1.5;
}

.btn-retry[b-9bxl8qbbuw] {
    width: 100%; padding: 15px 24px;
    background: linear-gradient(180deg, #C4B5FD 0%, #A855F7 50%, #8B2FC9 100%);
    color: #fff; border: none; border-radius: 14px;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 6px 20px rgba(139,92,246,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 14px; font-family: inherit;
}
.btn-retry:hover[b-9bxl8qbbuw] { transform: translateY(-2px); }

.fail-hint[b-9bxl8qbbuw] { font-size: 0.75rem; color: #94a3b8; }

/* ══════════════════════════════════════
   LOGIN FORM
══════════════════════════════════════ */
.conn-ready-badge[b-9bxl8qbbuw] {
    display: inline-flex; align-items: center; gap: 7px;
    background: #f0fdf4; border: 1px solid #bbf7d0;
    color: #16A34A; font-size: 0.78rem; font-weight: 700;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.step-track[b-9bxl8qbbuw] { display: flex; align-items: center; margin-bottom: 28px; }
.step-node[b-9bxl8qbbuw] { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; }
.node-circle[b-9bxl8qbbuw] {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 700; transition: background 0.3s, box-shadow 0.3s;
}
.node-label[b-9bxl8qbbuw] { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s; }
.node-active .node-circle[b-9bxl8qbbuw] { background: linear-gradient(135deg, #7C3AED, #C026D3); color: #fff; box-shadow: 0 4px 16px rgba(139,92,246,0.4); }
.node-active .node-label[b-9bxl8qbbuw] { color: #7C3AED; }
.node-done .node-circle[b-9bxl8qbbuw] { background: linear-gradient(135deg, #16A34A, #4ADE80); color: #fff; box-shadow: 0 4px 16px rgba(22,163,74,0.32); }
.node-done .node-label[b-9bxl8qbbuw] { color: #16A34A; }
.node-idle .node-circle[b-9bxl8qbbuw] { background: #e9e1f7; color: #94a3b8; }
.node-idle .node-label[b-9bxl8qbbuw] { color: #94a3b8; }

.step-connector[b-9bxl8qbbuw] { flex: 1; height: 2px; background: #e9e1f7; margin: 0 10px 20px; border-radius: 2px; transition: background 0.4s; }
.connector-done[b-9bxl8qbbuw] { background: #16A34A; }

.form-header[b-9bxl8qbbuw] { margin-bottom: 22px; }
.form-title[b-9bxl8qbbuw] { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: #3E1F73; letter-spacing: -0.4px; margin-bottom: 8px; }
.form-subtitle[b-9bxl8qbbuw] { font-size: 0.9rem; color: #64748b; line-height: 1.55; }
.highlight-email[b-9bxl8qbbuw] { color: #7C3AED; font-weight: 700; word-break: break-all; }
.otp-hint[b-9bxl8qbbuw] { font-size: 0.78rem; color: #94a3b8; margin-top: 6px; }

.field-group[b-9bxl8qbbuw] { margin-bottom: 16px; }
.field-label[b-9bxl8qbbuw] { display: block; font-size: 0.8rem; font-weight: 700; color: #475569; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 8px; }
.input-wrap[b-9bxl8qbbuw] {
    display: flex; align-items: center; background: #fff;
    border: 2px solid #e9e1f7; border-radius: 14px; overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-wrap:focus-within[b-9bxl8qbbuw] { border-color: #8B5CF6; box-shadow: 0 0 0 4px rgba(139,92,246,0.14); }
.input-prefix[b-9bxl8qbbuw] { padding: 0 16px; color: #b0a8cc; font-size: 1.05rem; display: flex; align-items: center; flex-shrink: 0; }
.input-wrap:focus-within .input-prefix[b-9bxl8qbbuw] { color: #8B5CF6; }
.form-input[b-9bxl8qbbuw] { flex: 1; border: none; outline: none; padding: 15px 16px 15px 0; font-size: 0.95rem; color: #3E1F73; background: transparent; font-family: inherit; }
.form-input[b-9bxl8qbbuw]::placeholder { color: #c8bfe0; }

.btn-action[b-9bxl8qbbuw] {
    width: 100%; padding: 16px 24px;
    background: linear-gradient(180deg, #C4B5FD 0%, #A855F7 50%, #8B2FC9 100%);
    color: #fff; border: none; border-radius: 14px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 6px 22px rgba(139,92,246,0.32);
    margin-bottom: 12px; font-family: inherit;
}
.btn-action:hover:not(:disabled)[b-9bxl8qbbuw] { transform: translateY(-2px); }
.btn-action:disabled[b-9bxl8qbbuw] { opacity: 0.6; cursor: not-allowed; }

.btn-ghost[b-9bxl8qbbuw] {
    width: 100%; padding: 13px 24px; background: transparent;
    color: #64748b; border: 2px solid #e9e1f7; border-radius: 14px;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s; margin-bottom: 12px; font-family: inherit;
}
.btn-ghost:hover:not(:disabled)[b-9bxl8qbbuw] { background: #F5F0FF; border-color: #DDD6FE; color: #7C3AED; }
.btn-ghost:disabled[b-9bxl8qbbuw] { opacity: 0.5; cursor: not-allowed; }

.status-msg[b-9bxl8qbbuw] {
    padding: 13px 16px; border-radius: 12px; font-size: 0.875rem; font-weight: 500;
    margin-bottom: 12px; line-height: 1.45;
}
.status-error[b-9bxl8qbbuw] { background: #fff0f5; color: #86198F; border: 1px solid #f5b8d1; }
.status-success[b-9bxl8qbbuw] { background: #f0fdf4; color: #16A34A; border: 1px solid #bbf7d0; }

.btn-spinner[b-9bxl8qbbuw] {
    width: 17px; height: 17px;
    border: 2.5px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: jv-login-spin-b-9bxl8qbbuw 0.65s linear infinite; flex-shrink: 0;
}
@keyframes jv-login-spin-b-9bxl8qbbuw { to { transform: rotate(360deg); } }

.auth-footer[b-9bxl8qbbuw] {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.76rem; color: #a0aec0;
    margin-top: 20px; padding-top: 18px; border-top: 1px solid #ece4fa;
}

.back-home-row[b-9bxl8qbbuw] { text-align: center; margin-top: 16px; margin-bottom: 4px; }
.back-home-link[b-9bxl8qbbuw] {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 0.82rem; font-weight: 600; color: #64748b;
    text-decoration: none; padding: 6px 12px; border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}
.back-home-link:hover[b-9bxl8qbbuw] { background: #F5F0FF; color: #7C3AED; }

/* ══════════════════════════════════════
   OTP — colored dot boxes
══════════════════════════════════════ */
.otp-group[b-9bxl8qbbuw] { display: flex; gap: .55rem; justify-content: center; margin: 4px 0 18px; }

.otp-box[b-9bxl8qbbuw] { position: relative; width: 48px; height: 56px; }

.otp-box input[b-9bxl8qbbuw] {
    width: 100%; height: 100%;
    text-align: center; font-size: 1.35rem; font-weight: 700;
    border: 2px solid #e9e1f7; border-radius: 12px;
    background: #faf8ff; color: #3E1F73;
    caret-color: #8B5CF6;
    transition: border-color .2s ease, box-shadow .2s ease;
    font-family: inherit;
}
.otp-box input:focus[b-9bxl8qbbuw] { outline: none; border-color: #8B5CF6; box-shadow: 0 0 0 4px rgba(139,92,246,0.14); background: #fff; }

.otp-box.filled input[b-9bxl8qbbuw] { color: transparent; caret-color: transparent; }

.otp-dot[b-9bxl8qbbuw] {
    display: none;
    position: absolute; top: 50%; left: 50%;
    width: 15px; height: 15px; border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #6D28D9, #A855F7, #C4B5FD);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 3px 8px -2px rgba(139,92,246,.6);
    pointer-events: none;
}
.otp-box:nth-child(2n) .otp-dot[b-9bxl8qbbuw] { background: linear-gradient(135deg, #86198F, #C026D3, #F472B6); box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 3px 8px -2px rgba(192,38,211,.6); }
.otp-box:nth-child(3n) .otp-dot[b-9bxl8qbbuw] { background: linear-gradient(135deg, #0d5c30, #16A34A, #86EFAC); box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 3px 8px -2px rgba(22,163,74,.6); }
.otp-box.filled .otp-dot[b-9bxl8qbbuw] { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    .brand-panel[b-9bxl8qbbuw] { display: none; }
    .form-panel[b-9bxl8qbbuw] { background: linear-gradient(160deg, #2E1065 0%, #8B5CF6 55%, #E048B0 100%); padding: 32px 20px; }
    .form-inner[b-9bxl8qbbuw] { background: #fff; border-radius: 24px; padding: 32px 24px; box-shadow: 0 24px 64px rgba(46,16,101,0.28); }
    .mobile-brand[b-9bxl8qbbuw] { display: flex; }
}

@media (max-width: 420px) {
    .form-panel[b-9bxl8qbbuw] { padding: 24px 14px; }
    .form-inner[b-9bxl8qbbuw] { padding: 26px 18px; border-radius: 20px; }
    .form-title[b-9bxl8qbbuw] { font-size: 1.4rem; }
    .otp-box[b-9bxl8qbbuw] { width: 42px; height: 52px; }
    .otp-box input[b-9bxl8qbbuw] { font-size: 1.15rem; }
    .otp-group[b-9bxl8qbbuw] { gap: .4rem; }
}
