@import '_content/AuralizeBlazor/AuralizeBlazor.tf5u2o3oxg.bundle.scp.css';
@import '_content/Nextended.Blazor/Nextended.Blazor.tkxqvq0zjw.bundle.scp.css';

/* /Layout/MainLayout.razor.rz.scp.css */

/* Main Layout */
.layout-container[b-h73zwsa2vo] {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow-y: hidden;
    background-color: var(--color-surface);
}

/*Container*/
.content-container[b-h73zwsa2vo] {
    flex-grow: 1;
    padding: 20px 0 0 0;
    transition: margin-left 0.3s ease;
    overflow-x: hidden;
}

.layout-responsive[b-h73zwsa2vo] {
    padding: 20px 0 0 0;
    overflow-x: hidden;
    flex-grow: 1;
    transition: margin-left 0.3s ease;
}

@media screen and (min-width: 300px) and (max-width: 700px) {
    .content-container[b-h73zwsa2vo] {
        padding: 0;
        margin-top: 10px;
        transition: margin-left 0.1s ease;
        overflow-x: hidden;
    }

    .layout-responsive[b-h73zwsa2vo] {
        padding: 0;
        margin-top: 10px;
        transition: margin-left 0.1s ease;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
nav[b-m3jf1prxw2] {
    flex-grow: 1;
    transition: width 0.3s ease;
    width: var(--nav-width, 220px); /* Default width based on variable */
    background-color: var(--color-surface);
    color: var(--color-black);    
}
.page-name[b-m3jf1prxw2] {
    position: absolute;
    left: 100px;
    margin-top: 35px;
    transition-property: left;
    transition: 0.5s ease;
}

    .page-name h3 span[b-m3jf1prxw2] {
        color: var(--color-navy);
        font-family: Urbanist;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
    }

#display-profile-tab[b-m3jf1prxw2] {
    display: none; /*display for tabs only*/
}

.right-nav-controls[b-m3jf1prxw2] {
    display: flex;
    gap: 20px;
    margin-top: 33px;
    position: absolute;
    right: 30px;
    gap: 20px;
    padding: 0 20px;
}



/*================profile pricture===============*/

.avatar-container[b-m3jf1prxw2] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* This is the "circle around it" */
    border: 2px solid var(--Dark-Blue);
    padding: 2px; /* Space between border and image */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    transition: all 0.2s ease-in-out;
}

.profile-image[b-m3jf1prxw2] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Style for when no image is present */
.avatar-container.fallback[b-m3jf1prxw2] {
    background-color: var(--color-bg-default);
    border-color: var(--color-border-stroke);
    color: #718AAD;
}

    .avatar-container.fallback svg[b-m3jf1prxw2] {
        width: 22px;
        height: 22px;
    }

/* Hover effect for better UX */
.profile-trigger:hover .avatar-container[b-m3jf1prxw2] {
    border-color: #1a6cd4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/*==================*/




.profile-tab[b-m3jf1prxw2] {
    display: flex;
    justify-content: start;
    margin-top: 15px;
    border-top: 1px solid var(--color-border-stroke);
    border-bottom: 1px solid var(--color-border-stroke);
}

.profile-wrap-tab[b-m3jf1prxw2] {
    position: relative;
    padding: 20px 0 20px 30px;
    left: -20px;
}

.user-name-tab[b-m3jf1prxw2] {
    color: var(--Gray, #718AAD);
    font-family: Urbanist;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    position: relative;
    top: 32px;
    left: 0px;
}

.profile-menu[b-m3jf1prxw2] {
    position: absolute;
    border-radius: 22px;
    border: 2px solid var(--color-border-stroke);
    background: var(--color-surface);
    box-shadow: 0px 0px 220px rgba(107, 132, 163, 0.5);
    height: auto; /* was 200px — let content breathe */
    width: 200px; /* was 170px */
    z-index: 1001;
    right: 10px;
    top: 55px;    
}

    .profile-menu ul[b-m3jf1prxw2] {
        padding: 10px 16px; /* was 10px — more horizontal room */
    }

    .profile-menu li[b-m3jf1prxw2] {
        color: var(--color-gray-600);
        font-family: Urbanist, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        cursor: pointer;
        text-align: center;
        padding: 10px 8px; /* added horizontal padding per item */
        border-bottom: 1px solid rgba(127, 141, 162, 0.10);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .profile-menu li:last-child[b-m3jf1prxw2] {
            border-bottom: none;
        }

        .profile-menu li:hover[b-m3jf1prxw2] {
            color: var(--color-dark);
        }

    /* Theme row inside menu */
    .profile-menu .theme-row[b-m3jf1prxw2] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 12px;
        border-top: 1px solid rgba(127, 141, 162, 0.15); /* divider above */
        margin-top: 4px;
        cursor: default;
    }

        .profile-menu .theme-row span[b-m3jf1prxw2] {
            color: var(--color-gray-600);
            font-family: var(--font-family-body);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }


.about-divider[b-m3jf1prxw2]{
    margin: 30px 0 0 0;
}

/*tab*/

.profile-menu-tab[b-m3jf1prxw2] {
    position: absolute;
    border-radius: 22px;
    border: 1px solid var(--color-border-stroke);
    background: var(--color-surface);
    box-shadow: 0px 0px 220px rgba(107, 132, 163, 0.5);
    height: 240px;
    width: 180px;
    z-index: 1001;
    left: 20px;
    top: 75px;
    display: none;
}

    .profile-menu-tab ul[b-m3jf1prxw2] {
        padding: 10px;
    }

    .profile-menu-tab li[b-m3jf1prxw2] {
        color: var(--color-gray-600);
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        font-size: 14px;
        cursor: pointer;
        text-align: center;
        position: relative;
        left: -6px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(127, 141, 162, 0.10);
    }

        .profile-menu-tab li svg[b-m3jf1prxw2] {
            padding: 1px;
            margin-right: 3px;
        }

        .profile-menu-tab li:hover[b-m3jf1prxw2] {
            color: var(--color-black);
        }



.menu-active[b-m3jf1prxw2] {
    border-radius: 14px;
    border: 1px solid rgba(127, 141, 162, 0.24);
    background: rgba(242, 249, 254, 0.50);
}

nav ul[b-m3jf1prxw2] {
    margin-top: 10px; /*increase the buffer space whenever search comp. gets added*/
    padding: 10px 20px 10px 20px;
    height: 80vh;
    overflow-y: auto;
}

.nav-menu nav ul[b-m3jf1prxw2] {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

    .nav-menu nav ul:hover[b-m3jf1prxw2] {
        scrollbar-color: #0756c3 transparent;
    }


nav li[b-m3jf1prxw2] {
    font-size: 14px;
    padding: 12px 0;
    margin-left: 15px;
    font-family: 'Urbanist', Arial;
    color: var(--color-gray-600);
    cursor: pointer;
    display: flex;
}

    nav li h6[b-m3jf1prxw2] {
        font-size: 14px;
        padding-top: 3px;
        font-family: 'Urbanist', Arial;
        color: var(--color-gray-600);
        display: flex;
    }

        nav li h6:hover[b-m3jf1prxw2] {
            color: var(--color-black);
        }

    nav li svg[b-m3jf1prxw2] {
        margin-right: 10px;
    }

.nav-menu-active li[b-m3jf1prxw2] {
    color: black
}

.nav-menu-active svg path[b-m3jf1prxw2] {
    stroke: var(--Dark-Blue);
}

.nav-menu-active svg circle[b-m3jf1prxw2] {
    stroke: var(--Dark-Blue);
}

.toggle-bar[b-m3jf1prxw2] {
    display: flex;
    flex-direction: column;
    padding: 40px 0 0 40px;
    z-index: 1001;
    position: relative;
    cursor: pointer;
}

.close-menu-style[b-m3jf1prxw2] {
    font-family: 'Urbanist';
    color: var(--color-navy);
    position: relative;
    font-size: 18px;
    margin-left: 40px;
    top: -23px;
    font-weight: 500;
}

.mobile-menu-toggle[b-m3jf1prxw2] {
    display: none;
    position: relative;
    float: right;
    top: -2px;
}

.mobile-nav-profile-cont[b-m3jf1prxw2] {
    position: absolute;
    bottom: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.mobile-nav-profile[b-m3jf1prxw2] {
    height: 75px;
    display: flex;
    border-radius: 12px;
    background: var(--dark, #1A2338);
    align-items: center;
    width: 90%;
}

    .mobile-nav-profile svg[b-m3jf1prxw2] {
        margin: 0 12px 0 15px;
    }

.mobile-menu-cont[b-m3jf1prxw2] {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

    .mobile-menu-cont h6[b-m3jf1prxw2] {
        color: var(--color-white);
        font-family: Urbanist;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        margin: 0;
    }

    .mobile-menu-cont svg[b-m3jf1prxw2] {
        position: relative;
        left: -5px;
    }

.mobile-bottom-brand-cont[b-m3jf1prxw2] {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.mobile-bottom-brand[b-m3jf1prxw2] {
    display: flex;
    position: relative;
    left: -10px;
}

    .mobile-bottom-brand span[b-m3jf1prxw2] {
        color: var(--dark, #1A2338);
        font-family: Inter;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
    }

    .mobile-bottom-brand svg[b-m3jf1prxw2] {
        margin: 0 10px;
    }

#mobile-nav-display[b-m3jf1prxw2] {
    display: none;
}

.menu-cont[b-m3jf1prxw2] {
    position: relative;
    top: 2px;
}


/*========Theme toggle switch*============*/

.theme-switch-wrapper[b-m3jf1prxw2] {
    display: flex;
    align-items: center;
}

.theme-switch[b-m3jf1prxw2] {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 50px;
}

    .theme-switch input[b-m3jf1prxw2] {
        display: none;
    }

/* The Track (Glassmorphism effect) */
.slider[b-m3jf1prxw2] {
    background: var(--color-gray-200);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: var(--transition-duration-base);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    box-shadow: var(--shadow-sm);
}

/* The Sliding Ball */
.ball[b-m3jf1prxw2] {
    background-color: var(--color-white);
    bottom: 4px;
    content: "";
    height: 16px;
    left: 4px;
    position: absolute;
    transition: var(--transition-duration-cubic);
    width: 16px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

/* Icon Styling */
.slider svg[b-m3jf1prxw2] {
    z-index: 1;
    transition: var(--transition-duration-base);
}

.icon-sun[b-m3jf1prxw2] {
    color: var(--color-warning);
}

.icon-moon[b-m3jf1prxw2] {
    color: var(--color-gray-400);
}

/* Dark Mode States */
input:checked + .slider[b-m3jf1prxw2] {
    background-color: var(--color-dark-light);
}

    input:checked + .slider .ball[b-m3jf1prxw2] {
        transform: translateX(26px);
        background-color: var(--color-primary);
    }

    input:checked + .slider .icon-sun[b-m3jf1prxw2] {
        color: var(--color-gray-500);
    }

    input:checked + .slider .icon-moon[b-m3jf1prxw2] {
        color: var(--color-white);
    }


/*=====================*/

/* ── LOCKED OVERLAY ── */
.menu-wrapper[b-m3jf1prxw2] {
    overflow: hidden; /* Ensures the overlay doesn't spill out */
    height: calc(100%); /* Adjust based on your toggle bar height */    
}

.locked-overlay[b-m3jf1prxw2] {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 100;
    /* Glassmorphism Effect */
    background: rgba(31, 51, 105, 0.4); /* Based on your --panel color */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:12px; /* Matches your card radius */
}

.lock-container[b-m3jf1prxw2] {
    background: #192d5e; /* --panel-2 */
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseLock-b-m3jf1prxw2 2s infinite ease-in-out;
}

.lock-icon[b-m3jf1prxw2] {
    width: 32px;
    height: 32px;
}

/* ── ANIMATIONS ── */

@keyframes pulseLock-b-m3jf1prxw2 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(189, 145, 38, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(189, 145, 38, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(189, 145, 38, 0);
    }
}

/* Ensure the underlying menu is visible but not interactive */
.locked-overlay + ul[b-m3jf1prxw2] {
    pointer-events: none; /* User cannot click links when locked */
    user-select: none;
}


@media screen and (min-width: 300px) and (max-width: 750px) {
    #desktop-nav[b-m3jf1prxw2] {
        display: none;
    }

    #mobile-nav-display[b-m3jf1prxw2] {
        display: block;
    }

    .toggle-bar[b-m3jf1prxw2] {
        display: flex;
        flex-direction: row;
        padding: 10px;
        margin: 28px 0 0 10px;
    }

        .toggle-bar svg[b-m3jf1prxw2] {
            width: 26px;
            height: 14px;
        }

    .profile-wrap[b-m3jf1prxw2] {
        display: block;
    }

    #display-profile-tab[b-m3jf1prxw2] {
        display: none;
    }

    .page-name[b-m3jf1prxw2] {
        margin-top: 33px;
        left: 63px !important;
    }

        .page-name h3[b-m3jf1prxw2] {
            font-size: 18px;
        }

    #desktop-toggle[b-m3jf1prxw2] {
        display: none;
    }

    #mobile-toggle[b-m3jf1prxw2] {
        display: block;
    }

    .close-menu-style[b-m3jf1prxw2] {
        font-size: 16px;
        position: relative;
        top: 0px;
        left: -36px;
    }

    .close-svg[b-m3jf1prxw2] {
        width: 26px !important;
        height: 26px !important;
        padding: 0;
        position: relative;
        left: -5px;
        top: -3px;
    }

    .profile-wrap[b-m3jf1prxw2] {
        padding: 22px 0px;
        z-index: 1002;
    }

        .profile-wrap image[b-m3jf1prxw2] {
        }

    nav[b-m3jf1prxw2] {
        width: 100vw;
        margin-top: 70px;
    }

        nav ul[b-m3jf1prxw2] {
            width: 100%;
            position: relative;
            top: 20px;
            padding-right: 15px;
        }

        nav li[b-m3jf1prxw2] {
            padding: 6px 0;
            position: relative;
            left: -15px;
        }

    .mobile-menu-toggle[b-m3jf1prxw2] {
        display: block;
    }

    .menu-cont[b-m3jf1prxw2] {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding-bottom: 0px;
        border-bottom: 1px solid rgba(70, 125, 206, 0.24);
    }

        .menu-cont .mobile-menu-toggle[b-m3jf1prxw2] {
            position: relative;
            left: 15px;
            display: block;
        }

    .about-divider[b-m3jf1prxw2] {
        display: none;
    }

    .mob-bottom-display[b-m3jf1prxw2] {
        display: block;
    }

    .profile-menu[b-m3jf1prxw2] {
        top: 80px;
    }

        .profile-menu li[b-m3jf1prxw2] {
            padding: 5px 0;
            font-size: 12px;
        }

            .profile-menu li svg[b-m3jf1prxw2] {
                width: 21px !important;
                height: 21px !important;
            }

    .nav-menu[b-m3jf1prxw2] {
        width: 0;
    }

    .toggle-bar[b-m3jf1prxw2] {
        position: absolute;
    }

    .right-nav-controls[b-m3jf1prxw2] {
        margin-top: 5px;
        right: 10px;
    }

    .avatar-container.fallback svg[b-m3jf1prxw2] {
        width: 28px;
        height: 28px;
    }
}

@media screen and (min-width: 750px) and (max-width: 1024px) {
    .profile-wrap[b-m3jf1prxw2] {
        display: none;
    }

    #display-profile-tab[b-m3jf1prxw2] {
        display: block;
    }

    nav li[b-m3jf1prxw2] {
        padding: 6px 0;
    }
}

@media screen and (min-width: 750px) {
    .page-name[b-m3jf1prxw2] {
        display: block !important;
    }
}
/* /Pages/Auth/ForgotPassword.razor.rz.scp.css */



/* ═══════════════════════════════
   TWO-PANEL SHELL
═══════════════════════════════ */
.auth-shell[b-k67ly3nxwt] {
    display: flex;
    width: 100%;
    min-height: 100vh;
    height: 100vh; /* fill full viewport on desktop */
    font-family: Urbanist, sans-serif;
    overflow: hidden; /* no scroll on desktop side-by-side */
}

/* ── LEFT: IMAGE PANEL ── */
.auth-visual[b-k67ly3nxwt] {
    flex: 1 1 55%;
    position: relative;
    overflow: hidden;
    min-height: 0; /* prevents flex blowout */
}

    .auth-visual img[b-k67ly3nxwt] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1);
        transition: transform 7s ease;
    }

    .auth-visual:hover img[b-k67ly3nxwt] {
        transform: scale(1.08);
    }

    .auth-visual[b-k67ly3nxwt]::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(26,45,90,0.08) 0%, rgba(31,51,105,0.62) 100% );
        pointer-events: none;
    }

.version-badge[b-k67ly3nxwt] {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    font-size: 12px;
    color: rgba(255,255,255,.28);
    letter-spacing: .03em;
    pointer-events: none;
}

/* ── RIGHT: FORM PANEL ── */
.auth-panel[b-k67ly3nxwt] {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--panel);
    position: relative;
    overflow: hidden;
    padding: 48px 40px;
    min-height: 0; /* prevents flex blowout */
}

    .auth-panel[b-k67ly3nxwt]::before {
        content: '';
        position: absolute;
        top: -140px;
        right: -140px;
        width: 440px;
        height: 440px;
        background: radial-gradient(circle, rgba(74,143,232,.13) 0%, transparent 68%);
        pointer-events: none;
    }

    .auth-panel[b-k67ly3nxwt]::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(74,143,232,.06) 0%, transparent 68%);
        pointer-events: none;
    }

/* ── FORM CARD ── */
.auth-card[b-k67ly3nxwt] {
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ══════════════════════════════════════
   LOGO SLOT
══════════════════════════════════════ */
.logo-slot[b-k67ly3nxwt] {
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp-b-k67ly3nxwt .6s ease both;
}

    .logo-slot img[b-k67ly3nxwt] {
        height: 52px;
        width: auto;
    }

/* ── HEADINGS ── */
.form-title[b-k67ly3nxwt] {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -.01em;
    animation: fadeUp-b-k67ly3nxwt .5s ease both .05s;
    color: aliceblue;
}

.form-sub[b-k67ly3nxwt] {
    font-size: 14.5px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 38px;
    animation: fadeUp-b-k67ly3nxwt .5s ease both .1s;
}

/* ── UNDERLINE INPUTS ── */
.fields[b-k67ly3nxwt] {
    width: 100%;
}

.field[b-k67ly3nxwt] {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}

    .field input[b-k67ly3nxwt] {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--login-border);
        padding: 13px 38px 13px 0;
        font-size: 15px;
        color: var(--text);
        font-family: 'DM Sans', sans-serif;
        outline: none;
        transition: border-color var(--trans);
    }

        .field input[b-k67ly3nxwt]::placeholder {
            color: var(--muted);
        }

        .field input:focus[b-k67ly3nxwt] {
            border-bottom-color: var(--borderf);
        }

        .field input:-webkit-autofill[b-k67ly3nxwt],
        .field input:-webkit-autofill:focus[b-k67ly3nxwt] {
            -webkit-text-fill-color: var(--text) !important;
            -webkit-box-shadow: 0 0 0 1000px #1f3369 inset !important;
        }

.eye-toggle[b-k67ly3nxwt] {
    position: absolute;
    right: 0;
    bottom: 12px;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color var(--trans);
}

    .eye-toggle:hover[b-k67ly3nxwt] {
        color: var(--text);
    }

/* ── ERROR ── */
.error-msg[b-k67ly3nxwt] {
    color: #ff7878;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
    animation: fadeUp-b-k67ly3nxwt .3s ease both;
}

/* ── PRIMARY BUTTON ── */
.auth-btn-primary[b-k67ly3nxwt] {
    width: 100%;
    margin-top: 28px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #bd9126;
    color: white;
    font-size: 16px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    letter-spacing: .025em;
    transition: background var(--trans), transform .15s, box-shadow .2s;
    box-shadow: 0 3px 18px rgb(250, 201, 9, 0.38);
}

    .auth-btn-primary:hover[b-k67ly3nxwt] {
        background: #d4a32c;
        transform: translateY(-1px);
        box-shadow: 0 7px 26px rgba(250,201,9,.46);
    }

    .auth-btn-primary:active[b-k67ly3nxwt] {
        transform: none;
    }

    .auth-btn-primary:disabled[b-k67ly3nxwt] {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

/* ── FOOTER LINKS ── */
.form-footer[b-k67ly3nxwt] {
    margin-top: 26px;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    font-family: Urbanist, sans-serif;
}

.link-btn[b-k67ly3nxwt] {
    background: none;
    border: none;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color var(--trans);
}

    .link-btn:hover[b-k67ly3nxwt] {
        color: #bd9126;
    }

.ghost-btn[b-k67ly3nxwt] {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 15px;
    cursor: pointer;
    margin-top: 12px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: color var(--trans);
}

    .ghost-btn:hover[b-k67ly3nxwt] {
        color: #bd9126;
    }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp-b-k67ly3nxwt {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET (≤900px)
   Stack vertically, both panels
   share the full viewport height
   with NO white space below.
═══════════════════════════════ */
@media (max-width: 900px) {

    .auth-shell[b-k67ly3nxwt] {
        flex-direction: column;
        height: auto; /* let content dictate height */
        min-height: 100vh; /* at minimum fill the screen */
        overflow: visible; /* allow body to scroll if needed */
        overflow-y: auto; /* only scroll vertically if needed */
    }

    .auth-visual[b-k67ly3nxwt] {
        flex: none;
        width: 100%; /* full width, no overflow */
        height: 550px;
        flex-shrink: 0;
    }

        .auth-visual[b-k67ly3nxwt]::after {
            background: linear-gradient(to bottom, rgba(26,45,90,0.08) 0%, rgba(31,51,105,0.68) 100%);
        }

    .auth-panel[b-k67ly3nxwt] {
        flex: 1 1 auto; /* expand to fill remaining space — kills white gap */
        width: 100%; /* full width, no overflow */
        padding: 48px 32px 64px;
        min-height: 0;
        /* centres form even when panel is taller than form content */
        align-items: center;
        justify-content: center;
    }

    .version-badge[b-k67ly3nxwt] {
        bottom: auto;
        top: 14px;
        left: 14px;
    }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE (≤520px)
═══════════════════════════════ */
@media (max-width: 520px) {

    .auth-visual[b-k67ly3nxwt] {
        height: 300px;
    }

    .auth-panel[b-k67ly3nxwt] {
        padding: 20px 20px 56px;
    }

    .form-title[b-k67ly3nxwt] {
        font-size: 23px;
    }

    .logo-slot[b-k67ly3nxwt] {
        margin-bottom: 36px;
    }

    .auth-card[b-k67ly3nxwt] {
        max-width: 100%; /* use full available width on small phones */
    }
}
/* /Pages/Auth/Login.razor.rz.scp.css */



/* ═══════════════════════════════
   TWO-PANEL SHELL
═══════════════════════════════ */
.auth-shell[b-13xywuvjxl] {
    display: flex;
    width: 100%;
    min-height: 100vh;
    height: 100vh; /* fill full viewport on desktop */
    font-family: Urbanist, sans-serif;
    overflow: hidden; /* no scroll on desktop side-by-side */
}

/* ── LEFT: IMAGE PANEL ── */
.auth-visual[b-13xywuvjxl] {
    flex: 1 1 55%;
    position: relative;
    overflow: hidden;
    min-height: 0; /* prevents flex blowout */
}

    .auth-visual img[b-13xywuvjxl] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1);
        transition: transform 7s ease;
    }

    .auth-visual:hover img[b-13xywuvjxl] {
        transform: scale(1.08);
    }

    .auth-visual[b-13xywuvjxl]::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(26,45,90,0.08) 0%, rgba(31,51,105,0.62) 100% );
        pointer-events: none;
    }

.version-badge[b-13xywuvjxl] {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    font-size: 12px;
    color: rgba(255,255,255,.28);
    letter-spacing: .03em;
    pointer-events: none;
}

/* ── RIGHT: FORM PANEL ── */
.auth-panel[b-13xywuvjxl] {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--panel);
    position: relative;
    overflow: hidden;
    padding: 48px 40px;
    min-height: 0; /* prevents flex blowout */
}

    .auth-panel[b-13xywuvjxl]::before {
        content: '';
        position: absolute;
        top: -140px;
        right: -140px;
        width: 440px;
        height: 440px;
        background: radial-gradient(circle, rgba(74,143,232,.13) 0%, transparent 68%);
        pointer-events: none;
    }

    .auth-panel[b-13xywuvjxl]::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(74,143,232,.06) 0%, transparent 68%);
        pointer-events: none;
    }

/* ── FORM CARD ── */
.auth-card[b-13xywuvjxl] {
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ══════════════════════════════════════
   LOGO SLOT
══════════════════════════════════════ */
.logo-slot[b-13xywuvjxl] {
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp-b-13xywuvjxl .6s ease both;
}

    .logo-slot img[b-13xywuvjxl] {
        height: 52px;
        width: auto;
    }

/* ── HEADINGS ── */
.form-title[b-13xywuvjxl] {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -.01em;
    animation: fadeUp-b-13xywuvjxl .5s ease both .05s;
    color: aliceblue;
}

.form-sub[b-13xywuvjxl] {
    font-size: 14.5px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 38px;
    animation: fadeUp-b-13xywuvjxl .5s ease both .1s;
}

/* ── UNDERLINE INPUTS ── */
.fields[b-13xywuvjxl] {
    width: 100%;
}

.field[b-13xywuvjxl] {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}

    .field input[b-13xywuvjxl] {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--login-border);
        padding: 13px 38px 13px 0;
        font-size: 15px;
        color: var(--text);
        font-family: 'DM Sans', sans-serif;
        outline: none;
        transition: border-color var(--trans);
    }

        .field input[b-13xywuvjxl]::placeholder {
            color: var(--muted);
        }

        .field input:focus[b-13xywuvjxl] {
            border-bottom-color: var(--borderf);
        }

        .field input:-webkit-autofill[b-13xywuvjxl],
        .field input:-webkit-autofill:focus[b-13xywuvjxl] {
            -webkit-text-fill-color: var(--text) !important;
            -webkit-box-shadow: 0 0 0 1000px #1f3369 inset !important;
        }

.eye-toggle[b-13xywuvjxl] {
    position: absolute;
    right: 0;
    bottom: 12px;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color var(--trans);
}

    .eye-toggle:hover[b-13xywuvjxl] {
        color: var(--text);
    }

/* ── ERROR ── */
.error-msg[b-13xywuvjxl] {
    color: #ff7878;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
    animation: fadeUp-b-13xywuvjxl .3s ease both;
}

/* ── PRIMARY BUTTON ── */
.auth-btn-primary[b-13xywuvjxl] {
    width: 100%;
    margin-top: 28px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #bd9126;
    color: white;
    font-size: 16px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    letter-spacing: .025em;
    transition: background var(--trans), transform .15s, box-shadow .2s;
    box-shadow: 0 3px 18px rgb(250, 201, 9, 0.38);
}

    .auth-btn-primary:hover[b-13xywuvjxl] {
        background: #d4a32c;
        transform: translateY(-1px);
        box-shadow: 0 7px 26px rgba(250,201,9,.46);
    }

    .auth-btn-primary:active[b-13xywuvjxl] {
        transform: none;
    }

    .auth-btn-primary:disabled[b-13xywuvjxl] {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

/* ── FOOTER LINKS ── */
.form-footer[b-13xywuvjxl] {
    margin-top: 26px;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    font-family: Urbanist, sans-serif;
}

.link-btn[b-13xywuvjxl] {
    background: none;
    border: none;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color var(--trans);
}

    .link-btn:hover[b-13xywuvjxl] {
        color: #bd9126;
    }

.ghost-btn[b-13xywuvjxl] {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 15px;    
    cursor: pointer;
    margin-top: 12px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: color var(--trans);
}

    .ghost-btn:hover[b-13xywuvjxl] {
        color: #bd9126;
    }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp-b-13xywuvjxl {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET (≤900px)
   Stack vertically, both panels
   share the full viewport height
   with NO white space below.
═══════════════════════════════ */
@media (max-width: 900px) {

    .auth-shell[b-13xywuvjxl] {
        flex-direction: column;
        height: auto; /* let content dictate height */
        min-height: 100vh; /* at minimum fill the screen */
        overflow: visible; /* allow body to scroll if needed */
        overflow-y: auto; /* only scroll vertically if needed */
    }

    .auth-visual[b-13xywuvjxl] {
        flex: none;
        width: 100%; /* full width, no overflow */
        height:550px;
        flex-shrink: 0;
    }

        .auth-visual[b-13xywuvjxl]::after {
            background: linear-gradient(to bottom, rgba(26,45,90,0.08) 0%, rgba(31,51,105,0.68) 100%);
        }

    .auth-panel[b-13xywuvjxl] {
        flex: 1 1 auto; /* expand to fill remaining space — kills white gap */
        width: 100%; /* full width, no overflow */
        padding: 48px 32px 64px;
        min-height: 0;
        /* centres form even when panel is taller than form content */
        align-items: center;
        justify-content: center;
    }

    .version-badge[b-13xywuvjxl] {
        bottom: auto;
        top: 14px;
        left: 14px;
    }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE (≤520px)
═══════════════════════════════ */
@media (max-width: 520px) {

    .auth-visual[b-13xywuvjxl] {
        height: 300px;
    }

    .auth-panel[b-13xywuvjxl] {
        padding: 20px 20px 56px;
    }

    .form-title[b-13xywuvjxl] {
        font-size: 23px;
    }

    .logo-slot[b-13xywuvjxl] {
        margin-bottom: 36px;
    }

    .auth-card[b-13xywuvjxl] {
        max-width: 100%; /* use full available width on small phones */
    }
}
/* /Pages/Auth/Register.razor.rz.scp.css */



/* ═══════════════════════════════
   TWO-PANEL SHELL
═══════════════════════════════ */
.auth-shell[b-0b7g6vlcyt] {
    display: flex;
    width: 100%;
    min-height: 100vh;
    height: 100vh; /* fill full viewport on desktop */
    font-family: Urbanist, sans-serif;
    overflow: hidden; /* no scroll on desktop side-by-side */
}

/* ── LEFT: IMAGE PANEL ── */
.auth-visual[b-0b7g6vlcyt] {
    flex: 1 1 55%;
    position: relative;
    overflow: hidden;
    min-height: 0; /* prevents flex blowout */
}

    .auth-visual img[b-0b7g6vlcyt] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1);
        transition: transform 7s ease;
    }

    .auth-visual:hover img[b-0b7g6vlcyt] {
        transform: scale(1.08);
    }

    .auth-visual[b-0b7g6vlcyt]::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(26,45,90,0.08) 0%, rgba(31,51,105,0.62) 100% );
        pointer-events: none;
    }

.version-badge[b-0b7g6vlcyt] {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    font-size: 12px;
    color: rgba(255,255,255,.28);
    letter-spacing: .03em;
    pointer-events: none;
}

/* ── RIGHT: FORM PANEL ── */
.auth-panel[b-0b7g6vlcyt] {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--panel);
    position: relative;
    overflow: hidden;
    padding: 48px 40px;
    min-height: 0; /* prevents flex blowout */
}

    .auth-panel[b-0b7g6vlcyt]::before {
        content: '';
        position: absolute;
        top: -140px;
        right: -140px;
        width: 440px;
        height: 440px;
        background: radial-gradient(circle, rgba(74,143,232,.13) 0%, transparent 68%);
        pointer-events: none;
    }

    .auth-panel[b-0b7g6vlcyt]::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(74,143,232,.06) 0%, transparent 68%);
        pointer-events: none;
    }

/* ── FORM CARD ── */
.auth-card[b-0b7g6vlcyt] {
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ══════════════════════════════════════
   LOGO SLOT
══════════════════════════════════════ */
.logo-slot[b-0b7g6vlcyt] {
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp-b-0b7g6vlcyt .6s ease both;
}

    .logo-slot img[b-0b7g6vlcyt] {
        height: 52px;
        width: auto;
    }

/* ── HEADINGS ── */
.form-title[b-0b7g6vlcyt] {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -.01em;
    animation: fadeUp-b-0b7g6vlcyt .5s ease both .05s;
    color: aliceblue;
}

.form-sub[b-0b7g6vlcyt] {
    font-size: 14.5px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 38px;
    animation: fadeUp-b-0b7g6vlcyt .5s ease both .1s;
}

/* ── UNDERLINE INPUTS ── */
.fields[b-0b7g6vlcyt] {
    width: 100%;
}

.field[b-0b7g6vlcyt] {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}

    .field input[b-0b7g6vlcyt] {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--login-border);
        padding: 13px 38px 13px 0;
        font-size: 15px;
        color: var(--text);
        font-family: 'DM Sans', sans-serif;
        outline: none;
        transition: border-color var(--trans);
    }

        .field input[b-0b7g6vlcyt]::placeholder {
            color: var(--muted);
        }

        .field input:focus[b-0b7g6vlcyt] {
            border-bottom-color: var(--borderf);
        }

        .field input:-webkit-autofill[b-0b7g6vlcyt],
        .field input:-webkit-autofill:focus[b-0b7g6vlcyt] {
            -webkit-text-fill-color: var(--text) !important;
            -webkit-box-shadow: 0 0 0 1000px #1f3369 inset !important;
        }

.eye-toggle[b-0b7g6vlcyt] {
    position: absolute;
    right: 0;
    bottom: 12px;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color var(--trans);
}

    .eye-toggle:hover[b-0b7g6vlcyt] {
        color: var(--text);
    }

/* ── ERROR ── */
.error-msg[b-0b7g6vlcyt] {
    color: #ff7878;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
    animation: fadeUp-b-0b7g6vlcyt .3s ease both;
}

/* ── PRIMARY BUTTON ── */
.auth-btn-primary[b-0b7g6vlcyt] {
    width: 100%;
    margin-top: 28px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #bd9126;
    color: white;
    font-size: 16px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    letter-spacing: .025em;
    transition: background var(--trans), transform .15s, box-shadow .2s;
    box-shadow: 0 3px 18px rgb(250, 201, 9, 0.38);
}

    .auth-btn-primary:hover[b-0b7g6vlcyt] {
        background: #d4a32c;
        transform: translateY(-1px);
        box-shadow: 0 7px 26px rgba(250,201,9,.46);
    }

    .auth-btn-primary:active[b-0b7g6vlcyt] {
        transform: none;
    }

    .auth-btn-primary:disabled[b-0b7g6vlcyt] {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

/* ── FOOTER LINKS ── */
.form-footer[b-0b7g6vlcyt] {
    margin-bottom: 26px;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    font-family: Urbanist, sans-serif;
}

.link-btn[b-0b7g6vlcyt] {
    background: none;
    border: none;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color var(--trans);
}

    .link-btn:hover[b-0b7g6vlcyt] {
        color: #bd9126;
    }

.ghost-btn[b-0b7g6vlcyt] {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 15px;
    cursor: pointer;
    margin-top: 12px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: color var(--trans);
}

    .ghost-btn:hover[b-0b7g6vlcyt] {
        color: #bd9126;
    }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp-b-0b7g6vlcyt {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET (≤900px)
   Stack vertically, both panels
   share the full viewport height
   with NO white space below.
═══════════════════════════════ */
@media (max-width: 900px) {

    .auth-shell[b-0b7g6vlcyt] {
        flex-direction: column;
        height: auto; /* let content dictate height */
        min-height: 100vh; /* at minimum fill the screen */
        overflow: visible; /* allow body to scroll if needed */
        overflow-y: auto; /* only scroll vertically if needed */
    }

    .auth-visual[b-0b7g6vlcyt] {
        flex: none;
        width: 100%; /* full width, no overflow */
        height: 550px;
        flex-shrink: 0;
    }

        .auth-visual[b-0b7g6vlcyt]::after {
            background: linear-gradient(to bottom, rgba(26,45,90,0.08) 0%, rgba(31,51,105,0.68) 100%);
        }

    .auth-panel[b-0b7g6vlcyt] {
        flex: 1 1 auto; /* expand to fill remaining space — kills white gap */
        width: 100%; /* full width, no overflow */
        padding: 48px 32px 64px;
        min-height: 0;
        /* centres form even when panel is taller than form content */
        align-items: center;
        justify-content: center;
    }

    .version-badge[b-0b7g6vlcyt] {
        bottom: auto;
        top: 14px;
        left: 14px;
    }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE (≤520px)
═══════════════════════════════ */
@media (max-width: 520px) {

    .auth-visual[b-0b7g6vlcyt] {
        height: 300px;
    }

    .auth-panel[b-0b7g6vlcyt] {
        padding: 20px 20px 56px;
    }

    .form-title[b-0b7g6vlcyt] {
        font-size: 23px;
    }

    .logo-slot[b-0b7g6vlcyt] {
        margin-bottom: 36px;
    }

    .auth-card[b-0b7g6vlcyt] {
        max-width: 100%; /* use full available width on small phones */
    }
}
/* /Pages/Home.razor.rz.scp.css */
.main-partner-wrapper[b-ydl5yw2w88] {
    margin: 50px 20px 0px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    height: 85vh;
    padding: 50px 20px;
    background-color: var(--color-bg-default);
    border: 1px solid var(--color-border-stroke);
    overflow-y: auto;
    font-family: Urbanist;
}

.partner-wrapper[b-ydl5yw2w88] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.partner-card[b-ydl5yw2w88] {
    background-color: #FFFFFF;
    border: 1px solid rgba(38, 62, 120, 0.3);
    border-radius: 12px;
    padding: 48px;
    width: 100%;
    min-width: 480px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 35, 56, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 100%;
    overflow-y: auto;
}

    .partner-card.is-expanded[b-ydl5yw2w88] {
        width: 100%;
        border-top: 4px solid #263E78;
    }

/* SVG Styling */
.svg-icon-container[b-ydl5yw2w88] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.icon-main[b-ydl5yw2w88] {
    width: 48px;
    height: 48px;
    color: #263E78;
}

.icon-sub[b-ydl5yw2w88] {
    width: 26px;
    height: 26px;
    color: #4A8FE8;
    animation: float-b-ydl5yw2w88 3s ease-in-out infinite;
}

h2[b-ydl5yw2w88] {
    color: #1A2338;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

p[b-ydl5yw2w88] {
    color: #4A5568;
    font-size: 1rem;
    margin-bottom: 32px;
}

/* Primary Button */
.btn-partner[b-ydl5yw2w88] {
    background-color: #263E78;
    color: #FFFFFF;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s active;
}

    .btn-partner:hover[b-ydl5yw2w88] {
        background-color: #1A2338;
    }

/* Cancel / Back Button */
.btn-cancel[b-ydl5yw2w88] {
    background: none;
    border: none;
    color: #263E78;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0.7;
}

    .btn-cancel:hover[b-ydl5yw2w88] {
        opacity: 1;
    }

/* Form Section Animation */
.form-container[b-ydl5yw2w88] {
    animation: slideIn-b-ydl5yw2w88 0.4s ease-out;
    text-align: left;
    width: 100%;
}

.form-section h3[b-ydl5yw2w88] {
    color: #263E78;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ececed;
    padding-bottom: 10px;
}

@keyframes float-b-ydl5yw2w88 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideIn-b-ydl5yw2w88 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*===============form=====================*/
.reg-page[b-ydl5yw2w88] {
    height: auto;
    display: flex;
    align-items: flex-start;
    padding: 0px 20px 72px;
    font-family: Urbanist, 'DM Sans', sans-serif;
}

/* ── CARD ── */
.reg-card[b-ydl5yw2w88] {
    width: 100%;
    background: #1f3369;
    border-radius: 12px;
    padding: 48px 52px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
    animation: fadeUp-b-ydl5yw2w88 .5s ease both;
}

    /* glow accent top-right */
    .reg-card[b-ydl5yw2w88]::before {
        content: '';
        position: absolute;
        top: -160px;
        right: -160px;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(74,143,232,.10) 0%, transparent 65%);
        pointer-events: none;
    }

/* ── HEADER ── */
.reg-header[b-ydl5yw2w88] {
    margin-bottom: 40px;
    text-align: center;
}

    .reg-header h1[b-ydl5yw2w88] {
        font-size: 28px;
        font-weight: 600;
        color: #e4ecf8;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .reg-header p[b-ydl5yw2w88] {
        font-size: 14.5px;
        color: #8aaad8;
    }

/* ── SECTION LABEL ── */
.section-label[b-ydl5yw2w88] {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #bd9126;
    margin: 32px 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-label[b-ydl5yw2w88]::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,0.12);
    }

/* ── GRID ── */
.form-grid[b-ydl5yw2w88] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
}

.col-full[b-ydl5yw2w88] {
    grid-column: 1 / -1;
}

.col-left[b-ydl5yw2w88] {
    grid-column: 1;
}

.col-right[b-ydl5yw2w88] {
    grid-column: 2;
}

/* ── FIELD ── */
.field-wrap[b-ydl5yw2w88] {
    position: relative;
    width: 100%;
    margin-bottom: 22px;
}

.field-label[b-ydl5yw2w88] {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8aaad8;
    margin-bottom: 8px;
    transition: color 0.25s cubic-bezier(.4,0,.2,1);
}

.field-wrap:focus-within .field-label[b-ydl5yw2w88] {
    color: #e4ecf8;
}

.field-input[b-ydl5yw2w88] {
    width: 100%;
    background: #192d5e;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14.5px;
    color: #e4ecf8;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1), background 0.25s cubic-bezier(.4,0,.2,1);
}

    .field-input[b-ydl5yw2w88]::placeholder {
        color: rgba(138,170,216,0.45);
    }
    .field-input option[b-ydl5yw2w88] {
        background-color: var(--color-navy);
        border: 1px solid var(--color-border-stroke);
    }

    .field-input:focus[b-ydl5yw2w88] {
        border-color: #4A8FE8;
        background: rgba(74,143,232,.06);
        box-shadow: 0 0 0 3px rgba(74,143,232,.12);
    }

    .field-input.is-valid[b-ydl5yw2w88] {
        border-color: #3de08a;
    }

    .field-input.is-invalid[b-ydl5yw2w88] {
        border-color: #ff7878;
        box-shadow: 0 0 0 3px rgba(255,120,120,.10);
    }

    /* autofill override */
    .field-input:-webkit-autofill[b-ydl5yw2w88],
    .field-input:-webkit-autofill:focus[b-ydl5yw2w88] {
        -webkit-text-fill-color: #e4ecf8 !important;
        -webkit-box-shadow: 0 0 0 1000px #192d5e inset !important;
    }

/* textarea */
.field-textarea[b-ydl5yw2w88] {
    resize: vertical;
    min-height: 96px;
}

/* ── VALIDATION MSG ── */
.val-msg[b-ydl5yw2w88] {
    font-size: 12px;
    margin-top: 5px;
    min-height: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .val-msg.error[b-ydl5yw2w88] {
        color: #ff7878;
    }

    .val-msg.success[b-ydl5yw2w88] {
        color: #3de08a;
    }

.val-dot[b-ydl5yw2w88] {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    background: currentColor;
}

/* ── PHONE ROW ── */
.phone-prefix[b-ydl5yw2w88] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #8aaad8;
    pointer-events: none;
    user-select: none;
}

.has-prefix .field-input[b-ydl5yw2w88] {
    padding-left: 44px;
}

/* ── CHECKBOX ROW ── */
.check-group[b-ydl5yw2w88] {
    margin-top: 6px;
    margin-bottom: 22px;
}

.check-row[b-ydl5yw2w88] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #192d5e;
    transition: border-color 0.25s cubic-bezier(.4,0,.2,1), background 0.25s cubic-bezier(.4,0,.2,1);
    margin-bottom: 12px;
}

    .check-row:hover[b-ydl5yw2w88] {
        border-color: rgba(255,255,255,0.28);
        background: rgba(74,143,232,.05);
    }

    .check-row.checked[b-ydl5yw2w88] {
        border-color: #bd9126;
        background: rgba(189,145,38,.06);
    }

    .check-row input[type="checkbox"][b-ydl5yw2w88] {
        width: 18px;
        height: 18px;
        margin-top: 1px;
        accent-color: #bd9126;
        flex-shrink: 0;
        cursor: pointer;
    }

.check-text[b-ydl5yw2w88] {
    font-size: 13.5px;
    color: #8aaad8;
    line-height: 1.55;
}

    .check-text a[b-ydl5yw2w88] {
        color: #bd9126;
        text-decoration: none;
        font-weight: 600;
    }

        .check-text a:hover[b-ydl5yw2w88] {
            color: #d4a32c;
            text-decoration: underline;
        }

.check-row.is-invalid[b-ydl5yw2w88] {
    border-color: #ff7878;
}

/* ── SUBMIT BUTTON ── */
.submit-wrap[b-ydl5yw2w88] {
    margin-top: 36px;
}

.btn-submit[b-ydl5yw2w88] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #bd9126;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: .03em;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(.4,0,.2,1), transform .15s, box-shadow .2s;
    box-shadow: 0 3px 20px rgba(189,145,38,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-submit:hover:not(:disabled)[b-ydl5yw2w88] {
        background: #d4a32c;
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(189,145,38,.45);
    }

    .btn-submit:active[b-ydl5yw2w88] {
        transform: none;
    }

    .btn-submit:disabled[b-ydl5yw2w88] {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

/* spinner */
.spinner[b-ydl5yw2w88] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-ydl5yw2w88 .7s linear infinite;
}

/* ── SUCCESS BANNER ── */
.success-banner[b-ydl5yw2w88] {
    background: rgba(61,224,138,.08);
    border: 1px solid rgba(61,224,138,.3);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    animation: fadeUp-b-ydl5yw2w88 .4s ease both;
}

.success-banner-icon[b-ydl5yw2w88] {
    width: 36px;
    height: 36px;
    background: #3de08a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .success-banner-icon svg[b-ydl5yw2w88] {
        color: #fff;
    }

.success-banner p[b-ydl5yw2w88] {
    font-size: 14px;
    color: #3de08a;
    line-height: 1.5;
}

    .success-banner p strong[b-ydl5yw2w88] {
        font-weight: 600;
    }

/* ── FORM ERROR SUMMARY ── */
.form-error-summary[b-ydl5yw2w88] {
    background: rgba(255,120,120,.06);
    border: 1px solid rgba(255,120,120,.25);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13px;
    color: #ff7878;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeUp-b-ydl5yw2w88 .3s ease both;
}




/*======================================*/
/*============PENDING USER=============*/
/*======================================*/

.status-container[b-ydl5yw2w88] {
    display: flex;
    justify-content: center;
    align-items: center;    
    max-height:90%;
    font-family: 'Urbanist', 'Segoe UI', sans-serif;
}

.status-card[b-ydl5yw2w88] {
    width: 100%;
    width:100%;
    background: #1f3369; /* Panel Color */
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: slideUp-b-ydl5yw2w88 0.6s ease-out;
}

/* Icon & Pulse Animation */
.status-icon-wrap[b-ydl5yw2w88] {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.icon-pending[b-ydl5yw2w88] {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.pulse-ring[b-ydl5yw2w88] {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(189, 145, 38, 0.2); /* Accent color alpha */
    border-radius: 50%;
    z-index: 1;
    animation: ripple-b-ydl5yw2w88 2s infinite;
}

/* Typography */
.status-card h1[b-ydl5yw2w88] {
    color: #e4ecf8; /* Text color */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.status-card p[b-ydl5yw2w88] {
    color: #8aaad8; /* Muted color */
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Stepper/Progress Track */
.progress-track[b-ydl5yw2w88] {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

    .progress-track[b-ydl5yw2w88]::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
        z-index: 1;
    }

.step[b-ydl5yw2w88] {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-dot[b-ydl5yw2w88] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2d3e52; /* Dark Light */
    border: 4px solid #1f3369;
}

.step span[b-ydl5yw2w88] {
    font-size: 12px;
    color: #8aaad8;
    font-weight: 600;
    text-transform: uppercase;
}

.step.completed .step-dot[b-ydl5yw2w88] {
    background: #3de08a; /* Success Color */
}

.step.active .step-dot[b-ydl5yw2w88] {
    background: #bd9126; /* Accent Color */
    box-shadow: 0 0 10px rgba(189, 145, 38, 0.5);
}

.step.active span[b-ydl5yw2w88] {
    color: #bd9126;
}

/* Footer & Button */
.info-footer[b-ydl5yw2w88] {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

    .info-footer p[b-ydl5yw2w88] {
        font-size: 13px;
        margin-bottom: 15px;
    }

.btn-outline[b-ydl5yw2w88] {
    background: transparent;
    border: 1px solid #4A8FE8; /* Blue color */
    color: #4A8FE8;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-outline:hover[b-ydl5yw2w88] {
        background: #4A8FE8;
        color: #ffffff;
    }

/* Keyframes */
@keyframes ripple-b-ydl5yw2w88 {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes slideUp-b-ydl5yw2w88 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*======================================*/
/*============PENDING USER=============*/
/*======================================*/

/* ── ANIMATIONS ── */
@keyframes fadeUp-b-ydl5yw2w88 {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin-b-ydl5yw2w88 {
    to {
        transform: rotate(360deg);
    }
}

/* ── RESPONSIVE TABLET ── */
@media (max-width: 760px) {
    .reg-card[b-ydl5yw2w88] {
        padding: 36px 28px;
    }

    .form-grid[b-ydl5yw2w88] {
        grid-template-columns: 1fr;
    }

    .col-left[b-ydl5yw2w88], .col-right[b-ydl5yw2w88], .col-full[b-ydl5yw2w88] {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .reg-page[b-ydl5yw2w88] {
        padding: 24px 12px 56px;
    }

    .reg-card[b-ydl5yw2w88] {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .reg-header h1[b-ydl5yw2w88] {
        font-size: 22px;
    }
}

/*============================================*/
