/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout — header right controls + user dropdown (kiểu hình 2) */

/* Nút icon trên header (chuông, theme) */
.header-icon[b-61exjtggm8] {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface, #181830);
    border: 1px solid var(--color-border, rgba(255,255,255,.06));
    color: var(--color-muted, #7878aa);
    cursor: pointer;
    text-decoration: none;
    transition: all .15s ease;
}
.header-icon:hover[b-61exjtggm8] {
    color: var(--color-accent, #0183f2);
    border-color: var(--color-accent, #0183f2);
    background: var(--color-card, #13132a);
}

/* Nút avatar + tên người dùng */
.user-chip[b-61exjtggm8] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 8px 3px 3px;
    border-radius: 999px;
    cursor: pointer;
    background: var(--color-surface, #181830);
    border: 1px solid var(--color-border, rgba(255,255,255,.06));
    color: var(--color-txt, #e8e8f5);
    transition: all .15s ease;
}
.user-chip:hover[b-61exjtggm8] { border-color: var(--color-accent, #0183f2); }
.user-chip-avatar[b-61exjtggm8] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-accent, #0183f2), #00cffa);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown người dùng */
.user-menu[b-61exjtggm8] {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 60;
    width: 264px;
    background: var(--color-card, #13132a);
    border: 1px solid var(--color-border, rgba(255,255,255,.06));
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    overflow: hidden;
    animation: um-fade-b-61exjtggm8 .15s ease;
}
@keyframes um-fade-b-61exjtggm8 {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: none; }
}

.user-menu-head[b-61exjtggm8] { display: flex; align-items: center; gap: 10px; padding: 14px; }
.user-menu-avatar[b-61exjtggm8] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-accent, #0183f2), #00cffa);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-menu-name[b-61exjtggm8] { font-weight: 600; font-size: 13px; color: var(--color-txt, #e8e8f5); }
.user-menu-sub[b-61exjtggm8] { font-size: 11px; color: var(--color-muted, #7878aa); margin-top: 1px; }

.menu-divider[b-61exjtggm8] { height: 1px; background: var(--color-border, rgba(255,255,255,.06)); margin: 4px 0; }

.menu-item[b-61exjtggm8] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--color-txt, #e8e8f5);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .15s ease;
}
.menu-item:hover[b-61exjtggm8] { background: var(--color-hover, #22224a); }
.menu-item .mi-ic[b-61exjtggm8] {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--color-accent, #0183f2);
    background: var(--color-accent-dim, rgba(1,131,242,.14));
}
.menu-item.danger[b-61exjtggm8] { color: var(--color-danger, #ef4444); }
.menu-item.danger .mi-ic[b-61exjtggm8] { color: var(--color-danger, #ef4444); background: var(--color-danger-dim, rgba(239,68,68,.12)); }
.menu-item .chev[b-61exjtggm8] { margin-left: auto; font-size: 10px; opacity: .5; transition: transform .2s ease; }
.menu-item.open .chev[b-61exjtggm8] { transform: rotate(180deg); }

/* Submenu chọn ngôn ngữ */
.lang-submenu[b-61exjtggm8] { padding: 4px 14px 10px; display: flex; gap: 6px; }
.lang-submenu button[b-61exjtggm8] {
    flex: 1;
    padding: 5px 6px;
    border-radius: 8px;
    border: 1px solid var(--color-border, rgba(255,255,255,.06));
    background: var(--color-surface, #181830);
    color: var(--color-muted, #7878aa);
    font-size: 10.5px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all .15s ease;
}
.lang-submenu .lm-flag[b-61exjtggm8] {
    width: 15px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}
.lang-submenu button:hover[b-61exjtggm8] { color: var(--color-txt, #e8e8f5); border-color: var(--color-accent, #0183f2); }
.lang-submenu button.active[b-61exjtggm8] {
    background: var(--color-accent, #0183f2);
    border-color: var(--color-accent, #0183f2);
    color: #fff;
}

/* RAM row */
.ram-row[b-61exjtggm8] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 11px;
    color: var(--color-muted, #7878aa);
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu – scoped CSS */

/* ── Font Awesome nav icon ── */
.nav-ico[b-ufruxbnp0y] {
    font-size: 0.78rem;
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
    background: rgba(255,255,255,.12);
    border-radius: 0.35rem;
    padding: 0.18rem;
}

/* ── Section header ── */
.section-header[b-ufruxbnp0y] {
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(248,251,255,.55);
    padding: 0.9rem 0.75rem 0.35rem;
    user-select: none;
    pointer-events: none;
}

/* ── Nav link (trên nền gradient GODI — chữ trắng) ── */
[b-ufruxbnp0y] .kai-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.42rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(248,251,255,.80);
    text-decoration: none;
    transition: all 0.18s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

/* Left accent bar — vạch trắng 3.5px khi active (GODI §3.2) */
[b-ufruxbnp0y] .kai-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22.5%;
    bottom: 22.5%;
    width: 0;
    background: #fff;
    border-radius: 0 3px 3px 0;
    transition: width 0.18s ease;
}

[b-ufruxbnp0y] .kai-link:hover {
    background: rgba(255,255,255,.09);
    color: #fff;
    border-color: rgba(255,255,255,.12);
}

[b-ufruxbnp0y] .kai-link.active {
    background: rgba(255,255,255,.14);
    color: #fff;
    border-color: rgba(255,255,255,.18);
    font-weight: 600;
}

[b-ufruxbnp0y] .kai-link.active::before {
    width: 3.5px;
}

[b-ufruxbnp0y] .kai-link.active .nav-ico {
    opacity: 1;
    transform: scale(1.12);
}

[b-ufruxbnp0y] .kai-link .nav-ico { transition: opacity 0.18s, transform 0.18s; }
[b-ufruxbnp0y] .kai-link:hover .nav-ico { opacity: 1; }

/* ── Collapsible sub-group toggle button ── */
.sub-group-btn[b-ufruxbnp0y] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    padding: 0.42rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(248,251,255,.80);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: left;
    gap: 0;
}

.sub-group-btn:hover[b-ufruxbnp0y] {
    background: rgba(255,255,255,.09);
    color: #fff;
}

/* ── Collapsible sub-group items container ──
   Phân cấp rõ: thụt trái + viền dẫn trắng mờ (menu nhiều cấp) */
.sub-group-items[b-ufruxbnp0y] {
    flex-shrink: 0;
    padding-left: 0.45rem;
    border-left: 1px solid rgba(255,255,255,.16);
    margin-left: 1.5rem;
    margin-bottom: 0.15rem;
}

/* Item cấp con: thụt trái thêm + icon nhỏ hơn để phân biệt cấp */
[b-ufruxbnp0y] .sub-group-items .kai-link {
    padding-left: 0.85rem;
    font-size: 0.78rem;
}
[b-ufruxbnp0y] .sub-group-items .nav-ico {
    font-size: 0.66rem;
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.4rem;
    opacity: 0.75;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-7xt9jophmw],
.components-reconnect-repeated-attempt-visible[b-7xt9jophmw],
.components-reconnect-failed-visible[b-7xt9jophmw],
.components-pause-visible[b-7xt9jophmw],
.components-resume-failed-visible[b-7xt9jophmw],
.components-rejoining-animation[b-7xt9jophmw] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-retrying[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-failed[b-7xt9jophmw],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-7xt9jophmw] {
    display: block;
}


#components-reconnect-modal[b-7xt9jophmw] {
    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-7xt9jophmw 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-7xt9jophmw 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-7xt9jophmw 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-7xt9jophmw]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-7xt9jophmw 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-7xt9jophmw {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-7xt9jophmw {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-7xt9jophmw {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-7xt9jophmw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-7xt9jophmw] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-7xt9jophmw] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-7xt9jophmw] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-7xt9jophmw] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-7xt9jophmw] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-7xt9jophmw] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-7xt9jophmw 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-7xt9jophmw] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-7xt9jophmw {
    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/Layout/ToastNotification.razor.rz.scp.css */
/* Toast Notifications Component Styles */

.toast-notifications[b-0f4qhra1kn] {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.toast-notification[b-0f4qhra1kn] {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    pointer-events: auto;
    min-width: 320px;
}

    .toast-notification.show[b-0f4qhra1kn] {
        transform: translateX(0);
        opacity: 1;
    }

    .toast-notification.success[b-0f4qhra1kn] {
        border-left: 4px solid #10b981;
        box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
    }

    .toast-notification.error[b-0f4qhra1kn] {
        border-left: 4px solid #ef4444;
        box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
    }

    .toast-notification.warning[b-0f4qhra1kn] {
        border-left: 4px solid #f59e0b;
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
    }

    .toast-notification.info[b-0f4qhra1kn] {
        border-left: 4px solid #06b6d4;
        box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
    }

.toast-content[b-0f4qhra1kn] {
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.toast-icon[b-0f4qhra1kn] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.toast-notification.success .toast-icon[b-0f4qhra1kn] {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.toast-notification.error .toast-icon[b-0f4qhra1kn] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.toast-notification.warning .toast-icon[b-0f4qhra1kn] {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.toast-notification.info .toast-icon[b-0f4qhra1kn] {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.toast-message[b-0f4qhra1kn] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.toast-title[b-0f4qhra1kn] {
    font-weight: 600;
    font-size: 1rem;
    color: #111827;
    line-height: 1.4;
}

.toast-text[b-0f4qhra1kn] {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.5;
    word-wrap: break-word;
}

.toast-close[b-0f4qhra1kn] {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

    .toast-close:hover[b-0f4qhra1kn] {
        background: #e5e7eb;
        color: #111827;
        border-color: #6366f1;
        transform: scale(1.1);
    }

.toast-progress[b-0f4qhra1kn] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    animation: progressBar-b-0f4qhra1kn linear forwards;
    border-radius: 0 0 16px 16px;
}

.toast-notification.success .toast-progress[b-0f4qhra1kn] {
    background: linear-gradient(90deg, #10b981, #047857);
}

.toast-notification.error .toast-progress[b-0f4qhra1kn] {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.toast-notification.warning .toast-progress[b-0f4qhra1kn] {
    background: linear-gradient(90deg, #f59e0b, #ea580c);
}

.toast-notification.info .toast-progress[b-0f4qhra1kn] {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .toast-notifications[b-0f4qhra1kn] {
        top: 60px;
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .toast-notification[b-0f4qhra1kn] {
        min-width: auto;
    }

    .toast-content[b-0f4qhra1kn] {
        padding: 14px 16px;
        gap: 10px;
    }

    .toast-icon[b-0f4qhra1kn] {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .toast-title[b-0f4qhra1kn] {
        font-size: 0.9rem;
    }

    .toast-text[b-0f4qhra1kn] {
        font-size: 0.8rem;
    }

    .toast-close[b-0f4qhra1kn] {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}

/* Animation Keyframes */
@keyframes progressBar-b-0f4qhra1kn {
    from { 
        width: 100%; 
        opacity: 1;
    }
    to { 
        width: 0%; 
        opacity: 0.5;
    }
}

/* Hover Effects */
.toast-notification:hover[b-0f4qhra1kn] {
    transform: translateX(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

    .toast-notification:hover .toast-progress[b-0f4qhra1kn] {
        animation-play-state: paused;
    }

/* Focus and Accessibility */
.toast-notification:focus-within[b-0f4qhra1kn] {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

.toast-close:focus[b-0f4qhra1kn] {
    outline: 2px solid #6366f1;
    outline-offset: 1px;
}
/* /Components/Pages/Auth/ForgotPassword.razor.rz.scp.css */
/* =============================================================================
   FORGOT PASSWORD PAGE STYLES - TailwindCSS + Custom Animations
   ============================================================================= */

/* Blob Animation for Background */
@keyframes blob-b-spzss31umi {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(30px, 10px) scale(1.02);
    }
}

.animate-blob[b-spzss31umi] {
    animation: blob-b-spzss31umi 15s ease-in-out infinite;
}

.animation-delay-2000[b-spzss31umi] {
    animation-delay: 2s;
}

.animation-delay-4000[b-spzss31umi] {
    animation-delay: 4s;
}

.animation-delay-500[b-spzss31umi] {
    animation-delay: 0.5s;
}

/* Float Animation for Logo */
@keyframes float-b-spzss31umi {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float[b-spzss31umi] {
    animation: float-b-spzss31umi 4s ease-in-out infinite;
}

/* Slow Pulse */
.animate-pulse-slow[b-spzss31umi] {
    animation: pulse-b-spzss31umi 3s ease-in-out infinite;
}

@keyframes pulse-b-spzss31umi {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp-b-spzss31umi {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up[b-spzss31umi] {
    animation: fadeInUp-b-spzss31umi 0.6s ease-out forwards;
}

/* Simple Fade In */
@keyframes fadeIn-b-spzss31umi {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in[b-spzss31umi] {
    animation: fadeIn-b-spzss31umi 0.4s ease-out forwards;
}

/* Input Autofill Override for Dark Theme */
input:-webkit-autofill[b-spzss31umi],
input:-webkit-autofill:hover[b-spzss31umi],
input:-webkit-autofill:focus[b-spzss31umi] {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: white !important;
    caret-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Reset button styles to prevent white background */
button[b-spzss31umi] {
    background-color: transparent;
}

/* Input box-sizing fix */
input[b-spzss31umi] {
    box-sizing: border-box !important;
}
/* /Components/Pages/Auth/Login.razor.rz.scp.css */
/* =============================================================================
   MODERN LOGIN PAGE STYLES - TailwindCSS + Custom Animations
   ============================================================================= */

/* Blob Animation for Background */
@keyframes blob-b-9ql64m3lnq {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(30px, 10px) scale(1.02);
    }
}

.animate-blob[b-9ql64m3lnq] {
    animation: blob-b-9ql64m3lnq 15s ease-in-out infinite;
}

.animation-delay-2000[b-9ql64m3lnq] {
    animation-delay: 2s;
}

.animation-delay-4000[b-9ql64m3lnq] {
    animation-delay: 4s;
}

.animation-delay-500[b-9ql64m3lnq] {
    animation-delay: 0.5s;
}

/* Float Animation for Logo */
@keyframes float-b-9ql64m3lnq {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float[b-9ql64m3lnq] {
    animation: float-b-9ql64m3lnq 4s ease-in-out infinite;
}

/* Slow Pulse */
.animate-pulse-slow[b-9ql64m3lnq] {
    animation: pulse-b-9ql64m3lnq 3s ease-in-out infinite;
}

@keyframes pulse-b-9ql64m3lnq {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp-b-9ql64m3lnq {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up[b-9ql64m3lnq] {
    animation: fadeInUp-b-9ql64m3lnq 0.6s ease-out forwards;
}

/* Simple Fade In */
@keyframes fadeIn-b-9ql64m3lnq {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in[b-9ql64m3lnq] {
    animation: fadeIn-b-9ql64m3lnq 0.4s ease-out forwards;
}

/* Slide In Animation */
@keyframes slideIn-b-9ql64m3lnq {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in[b-9ql64m3lnq] {
    animation: slideIn-b-9ql64m3lnq 0.4s ease-out forwards;
}

/* Custom Scrollbar */
.custom-scrollbar[b-9ql64m3lnq]::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar[b-9ql64m3lnq]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.custom-scrollbar[b-9ql64m3lnq]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.custom-scrollbar[b-9ql64m3lnq]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Input Autofill Override for Dark Theme */
input:-webkit-autofill[b-9ql64m3lnq],
input:-webkit-autofill:hover[b-9ql64m3lnq],
input:-webkit-autofill:focus[b-9ql64m3lnq] {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: white !important;
    caret-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Reset button styles to prevent white background */
button[b-9ql64m3lnq] {
    background-color: transparent;
}

/* Input box-sizing fix */
input[b-9ql64m3lnq] {
    box-sizing: border-box !important;
}

/* Ensure inputs don't overflow */
input[type="text"][b-9ql64m3lnq],
input[type="password"][b-9ql64m3lnq],
input[type="email"][b-9ql64m3lnq] {
    max-width: 100%;
    overflow: hidden;
}

/* /Components/Pages/Auth/NotFound.razor.rz.scp.css */
/* =============================================================================
   NOT FOUND PAGE STYLES - TailwindCSS + Custom Animations
   ============================================================================= */

/* Blob Animation for Background */
@keyframes blob-b-lihqd2da1i {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(30px, 10px) scale(1.02);
    }
}

.animate-blob[b-lihqd2da1i] {
    animation: blob-b-lihqd2da1i 15s ease-in-out infinite;
}

.animation-delay-2000[b-lihqd2da1i] {
    animation-delay: 2s;
}

.animation-delay-4000[b-lihqd2da1i] {
    animation-delay: 4s;
}

.animation-delay-500[b-lihqd2da1i] {
    animation-delay: 0.5s;
}

/* Float Animation */
@keyframes float-b-lihqd2da1i {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float[b-lihqd2da1i] {
    animation: float-b-lihqd2da1i 4s ease-in-out infinite;
}

/* Slow Pulse */
.animate-pulse-slow[b-lihqd2da1i] {
    animation: pulse-b-lihqd2da1i 3s ease-in-out infinite;
}

@keyframes pulse-b-lihqd2da1i {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp-b-lihqd2da1i {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up[b-lihqd2da1i] {
    animation: fadeInUp-b-lihqd2da1i 0.6s ease-out forwards;
}

/* Simple Fade In */
@keyframes fadeIn-b-lihqd2da1i {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in[b-lihqd2da1i] {
    animation: fadeIn-b-lihqd2da1i 0.4s ease-out forwards;
}
