/* /Components/Account/Pages/Login.razor.rz.scp.css */
:root[b-zub96e2cdl] {
    --deep-purple: #1a0a2e;
    --electric-violet: #7b2ff7;
    --neon-pink: #ff2d95; /* kept for potential use, but removed from background */
    --cyan-glow: #00e5ff;
    --ocean-blue: #0d6efd;
    --sunset-orange: #ff6b35;
    --golden: #ffb347;
    --mint: #00f5d4;
    --card-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    --accent-violet: #a855f7;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899; /* kept for form elements */
}

*[b-zub96e2cdl] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-zub96e2cdl] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
    overflow: hidden;
    position: relative;
    background: #0d0221;
}

/* ============ ANIMATED GRADIENT BACKGROUND – NO REDS ============ */
.bg-canvas[b-zub96e2cdl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Colors now exclusively: deep blue, purple, violet, cyan, teal, soft blue */
    background: linear-gradient(-45deg, #0d0221, /* dark purple-black */
    #150578, /* deep indigo */
    #2d0a7a, /* rich purple */
    #4a0e78, /* violet */
    /*#0066cc,*/ /* strong blue */
    /*#0099ff,*/ /* vivid blue */
    /*#00cccc,*/ /* teal */
    /*#00e5ff,*/ /* cyan */
    /*#00f5d4,*/ /* mint */
    #3a0ca3 /* deep purple (no red) */
    );
    background-size: 600% 600%;
    animation: gradientShift-b-zub96e2cdl 18s ease infinite;
}

@keyframes gradientShift-b-zub96e2cdl {
    0% {
        background-position: 0% 50%;
    }

    12% {
        background-position: 25% 0%;
    }

    25% {
        background-position: 50% 25%;
    }

    37% {
        background-position: 75% 50%;
    }

    50% {
        background-position: 100% 75%;
    }

    62% {
        background-position: 75% 100%;
    }

    75% {
        background-position: 50% 75%;
    }

    87% {
        background-position: 25% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ============ FLOATING ORBS – NO REDS / ORANGES / PINKS ============ */
.orb[b-zub96e2cdl] {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Orb 1: replaced pink/red with cyan/violet */
.orb-1[b-zub96e2cdl] {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #00e5ff 0%, #7b2ff7 40%, transparent 70%);
    top: -120px;
    right: -100px;
    animation: floatOrb1-b-zub96e2cdl 10s ease-in-out infinite;
}

/* Orb 2: kept as is (cyan & blue) */
.orb-2[b-zub96e2cdl] {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00e5ff 0%, #0d6efd 40%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: floatOrb2-b-zub96e2cdl 12s ease-in-out infinite;
}

/* Orb 3: replaced pink-red with mint/teal */
.orb-3[b-zub96e2cdl] {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #7b2ff7 0%, #00f5d4 45%, transparent 70%);
    top: 50%;
    left: 55%;
    animation: floatOrb3-b-zub96e2cdl 14s ease-in-out infinite;
}

/* Orb 4: replaced orange/amber with deep blue & violet */
.orb-4[b-zub96e2cdl] {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #0066cc 0%, #4a0e78 40%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation: floatOrb4-b-zub96e2cdl 11s ease-in-out infinite;
}

/* Orb 5: kept as is (mint & blue) */
.orb-5[b-zub96e2cdl] {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #00f5d4 0%, #0d6efd 45%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: floatOrb5-b-zub96e2cdl 13s ease-in-out infinite;
}

@keyframes floatOrb1-b-zub96e2cdl {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    25% {
        transform: translate(-50px,60px) scale(1.15);
    }

    50% {
        transform: translate(-30px,-20px) scale(0.9);
    }

    75% {
        transform: translate(40px,-50px) scale(1.1);
    }
}

@keyframes floatOrb2-b-zub96e2cdl {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    33% {
        transform: translate(60px,-40px) scale(1.2);
    }

    66% {
        transform: translate(-30px,-70px) scale(0.85);
    }
}

@keyframes floatOrb3-b-zub96e2cdl {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(-70px,50px) scale(1.25);
    }
}

@keyframes floatOrb4-b-zub96e2cdl {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    30% {
        transform: translate(40px,-60px) scale(1.3);
    }

    70% {
        transform: translate(-50px,30px) scale(0.8);
    }
}

@keyframes floatOrb5-b-zub96e2cdl {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    40% {
        transform: translate(55px,45px) scale(1.35);
    }

    80% {
        transform: translate(-35px,-55px) scale(0.75);
    }
}

/* ============ GRID DOTS OVERLAY ============ */
.grid-overlay[b-zub96e2cdl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse-b-zub96e2cdl 6s ease-in-out infinite;
}

@keyframes gridPulse-b-zub96e2cdl {
    0%,100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.9;
    }
}

/* ============ SCAN LINE EFFECT ============ */
.scan-lines[b-zub96e2cdl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px);
}

/* ============ MAIN CONTAINER ============ */
.login-wrapper[b-zub96e2cdl] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    max-width: 460px;
    padding: 20px;
}

/* ============ GLASSMORPHISM CARD – STATIC COLORS, NO ANIMATED BORDERS ============ */
.login-card[b-zub96e2cdl] {
    background: linear-gradient(135deg, #000000, #1e3c72, #4169E1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px 45px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(168, 85, 247, 0.25), 0 0 20px rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
    animation: cardEntry-b-zub96e2cdl 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes cardEntry-b-zub96e2cdl {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.93);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-card-inner[b-zub96e2cdl] {
    position: relative;
    z-index: 1;
}

/* ============ ICON CIRCLE – STATIC GLOW ============ */
.icon-circle[b-zub96e2cdl] {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #a855f7, #06b6d4, #00f5d4); /* violet-cyan-mint, no red */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.6), 0 0 20px rgba(6, 182, 212, 0.3);
    position: relative;
}

    .icon-circle[b-zub96e2cdl]::after {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 2px dashed rgba(255, 255, 255, 0.2);
    }

    .icon-circle i[b-zub96e2cdl] {
        font-size: 2rem;
        color: #fff;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
    }

/* ============ TYPOGRAPHY ============ */
.login-title[b-zub96e2cdl] {
    font-weight: 700;
    font-size: 1.85rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.login-subtitle[b-zub96e2cdl] {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

    .login-subtitle span[b-zub96e2cdl] {
        background: linear-gradient(90deg, #06b6d4, #a855f7); /* cyan to violet */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
    }

/* ============ FORM ELEMENTS ============ */
[b-zub96e2cdl] .form-floating > .form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #ffffff;
    font-size: 0.95rem;
    height: 56px;
    padding-top: 1.4rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

    .form-floating > .form-control:focus[b-zub96e2cdl] {
        background: rgba(255, 255, 255, 0.1);
        border-color: #06b6d4;
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.35), 0 0 40px rgba(6, 182, 212, 0.1);
        outline: none;
        color: #fff;
    }

    .form-floating > .form-control[b-zub96e2cdl]::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }

.form-floating > label[b-zub96e2cdl] {
    color: rgba(255, 255, 255, 0.55);
    padding: 1rem 0.95rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus ~ label[b-zub96e2cdl],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-zub96e2cdl] {
    color: #06b6d4;
    transform: scale(0.8) translateY(-0.6rem) translateX(0.1rem);
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

.input-icon-wrapper[b-zub96e2cdl] {
    position: relative;
}

    .input-icon-wrapper .input-icon[b-zub96e2cdl] {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        color: rgba(255, 255, 255, 0.45);
        font-size: 1.15rem;
        pointer-events: none;
        transition: color 0.35s ease;
    }

    .input-icon-wrapper .form-control:focus ~ .input-icon[b-zub96e2cdl] {
        color: #06b6d4;
        text-shadow: 0 0 12px rgba(6, 182, 212, 0.7);
    }

/* ============ REMEMBER ME & FORGOT ============ */
.form-check-input[b-zub96e2cdl] {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .form-check-input:checked[b-zub96e2cdl] {
        background-color: #a855f7;
        border-color: #a855f7;
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
    }

    .form-check-input:focus[b-zub96e2cdl] {
        box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
        border-color: #06b6d4;
    }

.form-check-label[b-zub96e2cdl] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    cursor: pointer;
}

.forgot-link[b-zub96e2cdl] {
    color: #06b6d4;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

    .forgot-link:hover[b-zub96e2cdl] {
        color: #a855f7;
        text-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    }

/* ============ LOGIN BUTTON – STATIC GRADIENT (NO RED) ============ */
.btn-login[b-zub96e2cdl] {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    color: #ffffff; 
    background: linear-gradient(135deg, #000000, #1e3c72, #4169E1);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5), 0 4px 15px rgba(6, 182, 212, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .btn-login[b-zub96e2cdl]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .btn-login:hover[b-zub96e2cdl] {
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(168, 85, 247, 0.65), 0 6px 20px rgba(6, 182, 212, 0.5), 0 0 30px rgba(0, 245, 212, 0.25);
    }

        .btn-login:hover[b-zub96e2cdl]::before {
            left: 100%;
        }

    .btn-login:active[b-zub96e2cdl] {
        transform: translateY(-1px) scale(0.98);
    }

/* ============ DIVIDER ============ */
.divider-text[b-zub96e2cdl] {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 24px 0;
}

    .divider-text[b-zub96e2cdl]::before,
    .divider-text[b-zub96e2cdl]::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .divider-text[b-zub96e2cdl]::before {
        margin-right: 16px;
    }

    .divider-text[b-zub96e2cdl]::after {
        margin-left: 16px;
    }

/* ============ SOCIAL BUTTONS ============ */
.social-btn-group[b-zub96e2cdl] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-btn[b-zub96e2cdl] {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .social-btn:hover[b-zub96e2cdl] {
        transform: translateY(-4px);
        border-color: #06b6d4;
        box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
        background: rgba(255, 255, 255, 0.12);
    }

    .social-btn:nth-child(1):hover[b-zub96e2cdl] {
        border-color: #a855f7;
        box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
    }

    .social-btn:nth-child(2):hover[b-zub96e2cdl] {
        border-color: #06b6d4;
        box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
    }

    .social-btn:nth-child(3):hover[b-zub96e2cdl] {
        border-color: #00f5d4;
        box-shadow: 0 0 25px rgba(0, 245, 212, 0.4);
    }

    .social-btn:nth-child(4):hover[b-zub96e2cdl] {
        border-color: #a855f7;
        box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
    }

/* ============ SIGN UP LINK ============ */
.signup-text[b-zub96e2cdl] {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 28px;
}

    .signup-text a[b-zub96e2cdl] {
        color: #06b6d4;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }

        .signup-text a:hover[b-zub96e2cdl] {
            color: #a855f7;
            text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
        }

/* ============ RESPONSIVE ============ */
@media (max-width: 576px) {
    .login-card[b-zub96e2cdl] {
        padding: 35px 22px 30px;
        border-radius: 22px;
    }

    .login-title[b-zub96e2cdl] {
        font-size: 1.5rem;
    }

    .icon-circle[b-zub96e2cdl] {
        width: 60px;
        height: 60px;
    }

        .icon-circle i[b-zub96e2cdl] {
            font-size: 1.5rem;
        }

    .social-btn[b-zub96e2cdl] {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .btn-login[b-zub96e2cdl] {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .login-card[b-zub96e2cdl] {
        padding: 28px 16px 24px;
        border-radius: 18px;
    }

    .social-btn-group[b-zub96e2cdl] {
        gap: 8px;
    }

    .social-btn[b-zub96e2cdl] {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 0.9rem;
    }
}
/* /Components/Account/Pages/Register.razor.rz.scp.css */
:root[b-vplrv8ge92] {
    --deep-purple: #1a0a2e;
    --electric-violet: #7b2ff7;
    --neon-pink: #ff2d95; /* kept for potential use, but removed from background */
    --cyan-glow: #00e5ff;
    --ocean-blue: #0d6efd;
    --sunset-orange: #ff6b35;
    --golden: #ffb347;
    --mint: #00f5d4;
    --card-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    --accent-violet: #a855f7;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899; /* kept for form elements */
}

*[b-vplrv8ge92] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-vplrv8ge92] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
    overflow: hidden;
    position: relative;
    background: #0d0221;
}

/* ============ ANIMATED GRADIENT BACKGROUND – NO REDS ============ */
.bg-canvas[b-vplrv8ge92] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Colors now exclusively: deep blue, purple, violet, cyan, teal, soft blue */
    background: linear-gradient(-45deg, #0d0221, /* dark purple-black */
    #150578, /* deep indigo */
    #2d0a7a, /* rich purple */
    #4a0e78, /* violet */
    /*#0066cc,*/ /* strong blue */
    /*#0099ff,*/ /* vivid blue */
    /*#00cccc,*/ /* teal */
    /*#00e5ff,*/ /* cyan */
    /*#00f5d4,*/ /* mint */
    #3a0ca3 /* deep purple (no red) */
    );
    background-size: 600% 600%;
    animation: gradientShift-b-vplrv8ge92 18s ease infinite;
}

@keyframes gradientShift-b-vplrv8ge92 {
    0% {
        background-position: 0% 50%;
    }

    12% {
        background-position: 25% 0%;
    }

    25% {
        background-position: 50% 25%;
    }

    37% {
        background-position: 75% 50%;
    }

    50% {
        background-position: 100% 75%;
    }

    62% {
        background-position: 75% 100%;
    }

    75% {
        background-position: 50% 75%;
    }

    87% {
        background-position: 25% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ============ FLOATING ORBS – NO REDS / ORANGES / PINKS ============ */
.orb[b-vplrv8ge92] {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Orb 1: replaced pink/red with cyan/violet */
.orb-1[b-vplrv8ge92] {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #00e5ff 0%, #7b2ff7 40%, transparent 70%);
    top: -120px;
    right: -100px;
    animation: floatOrb1-b-vplrv8ge92 10s ease-in-out infinite;
}

/* Orb 2: kept as is (cyan & blue) */
.orb-2[b-vplrv8ge92] {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00e5ff 0%, #0d6efd 40%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: floatOrb2-b-vplrv8ge92 12s ease-in-out infinite;
}

/* Orb 3: replaced pink-red with mint/teal */
.orb-3[b-vplrv8ge92] {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #7b2ff7 0%, #00f5d4 45%, transparent 70%);
    top: 50%;
    left: 55%;
    animation: floatOrb3-b-vplrv8ge92 14s ease-in-out infinite;
}

/* Orb 4: replaced orange/amber with deep blue & violet */
.orb-4[b-vplrv8ge92] {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #0066cc 0%, #4a0e78 40%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation: floatOrb4-b-vplrv8ge92 11s ease-in-out infinite;
}

/* Orb 5: kept as is (mint & blue) */
.orb-5[b-vplrv8ge92] {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #00f5d4 0%, #0d6efd 45%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: floatOrb5-b-vplrv8ge92 13s ease-in-out infinite;
}

@keyframes floatOrb1-b-vplrv8ge92 {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    25% {
        transform: translate(-50px,60px) scale(1.15);
    }

    50% {
        transform: translate(-30px,-20px) scale(0.9);
    }

    75% {
        transform: translate(40px,-50px) scale(1.1);
    }
}

@keyframes floatOrb2-b-vplrv8ge92 {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    33% {
        transform: translate(60px,-40px) scale(1.2);
    }

    66% {
        transform: translate(-30px,-70px) scale(0.85);
    }
}

@keyframes floatOrb3-b-vplrv8ge92 {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(-70px,50px) scale(1.25);
    }
}

@keyframes floatOrb4-b-vplrv8ge92 {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    30% {
        transform: translate(40px,-60px) scale(1.3);
    }

    70% {
        transform: translate(-50px,30px) scale(0.8);
    }
}

@keyframes floatOrb5-b-vplrv8ge92 {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    40% {
        transform: translate(55px,45px) scale(1.35);
    }

    80% {
        transform: translate(-35px,-55px) scale(0.75);
    }
}

/* ============ GRID DOTS OVERLAY ============ */
.grid-overlay[b-vplrv8ge92] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse-b-vplrv8ge92 6s ease-in-out infinite;
}

@keyframes gridPulse-b-vplrv8ge92 {
    0%,100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.9;
    }
}

/* ============ SCAN LINE EFFECT ============ */
.scan-lines[b-vplrv8ge92] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px);
}

/* ============ MAIN CONTAINER ============ */
.register-wrapper[b-vplrv8ge92] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    max-width: 460px;
    padding: 20px;
}

/* ============ GLASSMORPHISM CARD – STATIC COLORS, NO ANIMATED BORDERS ============ */
.register-card[b-vplrv8ge92] {
    background: linear-gradient(135deg, #000000, #1e3c72, #4169E1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px 45px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(168, 85, 247, 0.25), 0 0 20px rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
    animation: cardEntry-b-vplrv8ge92 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes cardEntry-b-vplrv8ge92 {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.93);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.register-card-inner[b-vplrv8ge92] {
    position: relative;
    z-index: 1;
}

/* ============ ICON CIRCLE – STATIC GLOW ============ */
.icon-circle[b-vplrv8ge92] {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #a855f7, #06b6d4, #00f5d4); /* violet-cyan-mint, no red */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.6), 0 0 20px rgba(6, 182, 212, 0.3);
    position: relative;
}

    .icon-circle[b-vplrv8ge92]::after {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 2px dashed rgba(255, 255, 255, 0.2);
    }

    .icon-circle i[b-vplrv8ge92] {
        font-size: 2rem;
        color: #fff;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
    }

/* ============ TYPOGRAPHY ============ */
.register-title[b-vplrv8ge92] {
    font-weight: 700;
    font-size: 1.85rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.register-subtitle[b-vplrv8ge92] {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

    .register-subtitle span[b-vplrv8ge92] {
        background: linear-gradient(90deg, #06b6d4, #a855f7); /* cyan to violet */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
    }

/* ============ FORM ELEMENTS ============ */
[b-vplrv8ge92] .form-floating > .form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #ffffff;
    font-size: 0.95rem;
    height: 56px;
    padding-top: 1.4rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

    .form-floating > .form-control:focus[b-vplrv8ge92] {
        background: rgba(255, 255, 255, 0.1);
        border-color: #06b6d4;
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.35), 0 0 40px rgba(6, 182, 212, 0.1);
        outline: none;
        color: #fff;
    }

    .form-floating > .form-control[b-vplrv8ge92]::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }

.form-floating > label[b-vplrv8ge92] {
    color: rgba(255, 255, 255, 0.55);
    padding: 1rem 0.95rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus ~ label[b-vplrv8ge92],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-vplrv8ge92] {
    color: #06b6d4;
    transform: scale(0.8) translateY(-0.6rem) translateX(0.1rem);
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

.input-icon-wrapper[b-vplrv8ge92] {
    position: relative;
}

    .input-icon-wrapper .input-icon[b-vplrv8ge92] {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        color: rgba(255, 255, 255, 0.45);
        font-size: 1.15rem;
        pointer-events: none;
        transition: color 0.35s ease;
    }

    .input-icon-wrapper .form-control:focus ~ .input-icon[b-vplrv8ge92] {
        color: #06b6d4;
        text-shadow: 0 0 12px rgba(6, 182, 212, 0.7);
    }

/* ============ NATIVE SELECT DROPDOWN – STYLED ============ */
.role-select-wrapper[b-vplrv8ge92] {
    margin-bottom: 1.5rem;
    position: relative;
}

.role-label[b-vplrv8ge92] {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.3rem;
    margin-left: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

[b-vplrv8ge92] .role-select {
    width: 100%;
    height: 56px;
    padding: 0 2.5rem 0 1rem; /* extra right padding for custom arrow */
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: var(--input-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.4;
    background-image: none; /* we'll use a custom arrow via pseudo-element or separate icon */
    position: relative;
}

    .role-select:hover[b-vplrv8ge92] {
        border-color: rgba(255,255,255,0.35);
        background: rgba(255,255,255,0.1);
    }

    .role-select:focus[b-vplrv8ge92] {
        background: rgba(255,255,255,0.1);
        border-color: #06b6d4;
        box-shadow: 0 0 20px var(--focus-glow), 0 0 40px rgba(6,182,212,0.1);
        outline: none;
    }
/* Custom dropdown arrow using a wrapper and an icon */
.select-arrow[b-vplrv8ge92] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255,255,255,0.45);
    font-size: 1.2rem;
    transition: color 0.35s ease;
}

.role-select:focus ~ .select-arrow[b-vplrv8ge92] {
    color: #06b6d4;
    text-shadow: 0 0 10px rgba(6,182,212,0.6);
}

/* Styling the option elements (limited but we can set colors) */
.role-select option[b-vplrv8ge92] {
    background: #1a0a2e;
    color: #fff;
    padding: 10px;
    font-size: 0.95rem; 
}
/* ============ REMEMBER ME & FORGOT ============ */
.form-check-input[b-vplrv8ge92] {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .form-check-input:checked[b-vplrv8ge92] {
        background-color: #a855f7;
        border-color: #a855f7;
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
    }

    .form-check-input:focus[b-vplrv8ge92] {
        box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
        border-color: #06b6d4;
    }

.form-check-label[b-vplrv8ge92] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    cursor: pointer;
}

.forgot-link[b-vplrv8ge92] {
    color: #06b6d4;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

    .forgot-link:hover[b-vplrv8ge92] {
        color: #a855f7;
        text-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    }

/* ============ REGISTER BUTTON – STATIC GRADIENT (NO RED) ============ */
.btn-register[b-vplrv8ge92] {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    color: #ffffff;
    background: linear-gradient(135deg, #000000, #1e3c72, #4169E1);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5), 0 4px 15px rgba(6, 182, 212, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .btn-register[b-vplrv8ge92]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .btn-register:hover[b-vplrv8ge92] {
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(168, 85, 247, 0.65), 0 6px 20px rgba(6, 182, 212, 0.5), 0 0 30px rgba(0, 245, 212, 0.25);
    }

        .btn-register:hover[b-vplrv8ge92]::before {
            left: 100%;
        }

    .btn-register:active[b-vplrv8ge92] {
        transform: translateY(-1px) scale(0.98);
    }

/* ============ DIVIDER ============ */
.divider-text[b-vplrv8ge92] {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 24px 0;
}

    .divider-text[b-vplrv8ge92]::before,
    .divider-text[b-vplrv8ge92]::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .divider-text[b-vplrv8ge92]::before {
        margin-right: 16px;
    }

    .divider-text[b-vplrv8ge92]::after {
        margin-left: 16px;
    }

/* ============ SOCIAL BUTTONS ============ */
.social-btn-group[b-vplrv8ge92] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-btn[b-vplrv8ge92] {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .social-btn:hover[b-vplrv8ge92] {
        transform: translateY(-4px);
        border-color: #06b6d4;
        box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
        background: rgba(255, 255, 255, 0.12);
    }

    .social-btn:nth-child(1):hover[b-vplrv8ge92] {
        border-color: #a855f7;
        box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
    }

    .social-btn:nth-child(2):hover[b-vplrv8ge92] {
        border-color: #06b6d4;
        box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
    }

    .social-btn:nth-child(3):hover[b-vplrv8ge92] {
        border-color: #00f5d4;
        box-shadow: 0 0 25px rgba(0, 245, 212, 0.4);
    }

    .social-btn:nth-child(4):hover[b-vplrv8ge92] {
        border-color: #a855f7;
        box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
    }

/* ============ SIGN UP LINK ============ */
.signup-text[b-vplrv8ge92] {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 28px;
}

    .signup-text a[b-vplrv8ge92] {
        color: #06b6d4;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }

        .signup-text a:hover[b-vplrv8ge92] {
            color: #a855f7;
            text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
        }

/* ============ RESPONSIVE ============ */
@media (max-width: 576px) {
    .register-card[b-vplrv8ge92] {
        padding: 35px 22px 30px;
        border-radius: 22px;
    }

    .register-title[b-vplrv8ge92] {
        font-size: 1.5rem;
    }

    .icon-circle[b-vplrv8ge92] {
        width: 60px;
        height: 60px;
    }

        .icon-circle i[b-vplrv8ge92] {
            font-size: 1.5rem;
        }

    .social-btn[b-vplrv8ge92] {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .btn-register[b-vplrv8ge92] {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .register-card[b-vplrv8ge92] {
        padding: 28px 16px 24px;
        border-radius: 18px;
    }

    .social-btn-group[b-vplrv8ge92] {
        gap: 8px;
    }

    .social-btn[b-vplrv8ge92] {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 0.9rem;
    }
}
/* /Components/Layout/Dashboard/DashboardLayout.razor.rz.scp.css */
.page[b-mtiv7jnpb5] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-mtiv7jnpb5] {
    flex: 1;
}

.sidebar[b-mtiv7jnpb5] {
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/
    /*background-image: radial-gradient( circle farthest-corner at 10% 20%, rgba(97,186,255,1) 0%, rgba(166,239,253,1) 90.1% );*/
    background-image: linear-gradient(149deg, rgba(7,7,17,1) 0%, rgba(32,47,115,1) 100%);
}

.top-row[b-mtiv7jnpb5] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-mtiv7jnpb5]  a, .top-row[b-mtiv7jnpb5]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-mtiv7jnpb5]  a:hover, .top-row[b-mtiv7jnpb5]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-mtiv7jnpb5]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-mtiv7jnpb5] {
        justify-content: space-between;
    }

        .top-row[b-mtiv7jnpb5]  a, .top-row[b-mtiv7jnpb5]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-mtiv7jnpb5] {
        flex-direction: row;
    }

    .sidebar[b-mtiv7jnpb5] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mtiv7jnpb5] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-mtiv7jnpb5]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-mtiv7jnpb5], article[b-mtiv7jnpb5] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-mtiv7jnpb5] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-mtiv7jnpb5] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/Dashboard/DashboardLayoutNavMenu.razor.rz.scp.css */
.navbar-toggler[b-b9r84hgdht] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

    .navbar-toggler:checked[b-b9r84hgdht] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.top-row[b-b9r84hgdht] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-b9r84hgdht] {
    font-size: 1.1rem;
}

.bi[b-b9r84hgdht] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-b9r84hgdht] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-b9r84hgdht] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-b9r84hgdht] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-b9r84hgdht] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-b9r84hgdht] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-b9r84hgdht] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-b9r84hgdht] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-b9r84hgdht] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-b9r84hgdht] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-b9r84hgdht] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-b9r84hgdht] {
        padding-bottom: 1rem;
    }

    .nav-item[b-b9r84hgdht]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

    .nav-item[b-b9r84hgdht]  a.active {
        background-color: rgba(255,255,255,0.37);
        color: white;
    }

    .nav-item[b-b9r84hgdht]  .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

.nav-scrollable[b-b9r84hgdht] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-b9r84hgdht] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-b9r84hgdht] {
        display: none;
    }

    .nav-scrollable[b-b9r84hgdht] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/Main/MainLayout.razor.rz.scp.css */
/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row ::deep .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
        text-decoration: underline;
    }

    .top-row ::deep a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row {
        justify-content: space-between;
    }

    .top-row ::deep a, .top-row ::deep .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui {
    color-scheme: light only;
    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 {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
*/
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jetxwfyf4a],
.components-reconnect-repeated-attempt-visible[b-jetxwfyf4a],
.components-reconnect-failed-visible[b-jetxwfyf4a],
.components-pause-visible[b-jetxwfyf4a],
.components-resume-failed-visible[b-jetxwfyf4a],
.components-rejoining-animation[b-jetxwfyf4a] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-jetxwfyf4a],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-jetxwfyf4a],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-jetxwfyf4a],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-jetxwfyf4a],
#components-reconnect-modal.components-reconnect-retrying[b-jetxwfyf4a],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-jetxwfyf4a],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-jetxwfyf4a],
#components-reconnect-modal.components-reconnect-failed[b-jetxwfyf4a],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-jetxwfyf4a] {
    display: block;
}


#components-reconnect-modal[b-jetxwfyf4a] {
    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-jetxwfyf4a 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-jetxwfyf4a 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-jetxwfyf4a 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-jetxwfyf4a]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-jetxwfyf4a 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-jetxwfyf4a {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-jetxwfyf4a {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-jetxwfyf4a {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-jetxwfyf4a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-jetxwfyf4a] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-jetxwfyf4a] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-jetxwfyf4a] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-jetxwfyf4a] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-jetxwfyf4a] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-jetxwfyf4a] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jetxwfyf4a 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-jetxwfyf4a] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-jetxwfyf4a {
    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/Dashboard/Dashboard.razor.rz.scp.css */

*[b-a6lh6utwof] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-a6lh6utwof] {
    font-family: Inter,Segoe UI,Arial,sans-serif;
    background: #f5f7fb;
    color: #1f2937;
    min-height: 100vh;
    overflow: hidden;
}

    /* Background Decoration */
    body[b-a6lh6utwof]::before {
        content: "";
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at top left,#2563eb22 0%,transparent 30%), radial-gradient(circle at bottom right,#7c3aed22 0%,transparent 35%);
        z-index: -2;
    }

.grid[b-a6lh6utwof] {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(0,0,0,.03) 1px,transparent 1px);
    background-size: 45px 45px;
    z-index: -1;
}

/* Center Container */
.container[b-a6lh6utwof] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 30px;
}

.card[b-a6lh6utwof] {
    width: min(900px,100%);
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 28px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.7);
}

.logo[b-a6lh6utwof] {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 22px;
    background: linear-gradient(135deg,#2563eb,#7c3aed);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 15px 35px rgba(37,99,235,.35);
}

h1[b-a6lh6utwof] {
    margin-top: 35px;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.highlight[b-a6lh6utwof] {
    background: linear-gradient(90deg,#2563eb,#7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p[b-a6lh6utwof] {
    margin-top: 18px;
    font-size: 18px;
    color: #6b7280;
    max-width: 650px;
    margin-inline: auto;
    line-height: 1.7;
}

.badges[b-a6lh6utwof] {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.badge[b-a6lh6utwof] {
    padding: 12px 24px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
}

.footer[b-a6lh6utwof] {
    margin-top: 55px;
    color: #9ca3af;
    font-size: 14px;
    letter-spacing: .5px;
}

@media(max-width:768px) {

    .card[b-a6lh6utwof] {
        padding: 50px 25px;
    }

    h1[b-a6lh6utwof] {
        font-size: 34px;
    }

    p[b-a6lh6utwof] {
        font-size: 16px;
    }
}

 
