@import '_content/esmartx.ui/esmartx.ui.b9jw3lu2m4.bundle.scp.css';

/* _content/esmartx.web/Components/Auth/AdminOtpProfileSwitchForm.razor.rz.scp.css */
.admin-otp-profile-switch[b-ottj1x4ink] {
    display: grid;
    gap: 16px;
}

.otp-profile-field[b-ottj1x4ink] {
    display: grid;
    gap: 6px;
}

.otp-profile-field label[b-ottj1x4ink] {
    color: #262626;
    font-size: 14px;
    font-weight: 500;
}

.profile-switch-target[b-ottj1x4ink] {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #fafafa;
}

.profile-switch-target span[b-ottj1x4ink] {
    color: #8c8c8c;
    font-size: 13px;
}

.profile-switch-target strong[b-ottj1x4ink] {
    color: #262626;
    font-size: 18px;
}

.profile-switch-verification[b-ottj1x4ink] {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid #91caff;
    border-radius: 10px;
    background: #e6f4ff;
}

.profile-switch-verification strong[b-ottj1x4ink] {
    color: #0958d9;
}

.profile-switch-verification span[b-ottj1x4ink] {
    color: #595959;
    font-size: 13px;
}

.profile-switch-code[b-ottj1x4ink] {
    font-size: 20px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.2em;
    text-align: center;
}

.otp-profile-help[b-ottj1x4ink] {
    color: #8c8c8c;
    font-size: 12px;
}

.profile-switch-code-support[b-ottj1x4ink] {
    display: grid;
    gap: 8px;
}
/* _content/esmartx.web/Components/Layout/ProtectedLayout.razor.rz.scp.css */
/* ==========================================================================
   ProtectedLayout - Scoped Component Styles
   Modern SaaS Dashboard Design
   ========================================================================== */

/* Nav section visibility — keeps DOM nodes stable to prevent Blazor/AntDesign insertBefore errors */
[b-qh01r3rhye] .nav-hidden {
    display: none !important;
}

.impersonation-banner[b-qh01r3rhye] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-bottom: 1px solid #ffc53d;
    background: #fff7e6;
    color: #613400;
}

.impersonation-banner-icon[b-qh01r3rhye] {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #fa8c16;
    color: #fff;
}

.impersonation-banner-copy[b-qh01r3rhye] {
    display: grid;
    flex: 1 1 auto;
    min-width: 0;
    gap: 1px;
}

.impersonation-banner-copy span[b-qh01r3rhye] {
    color: #874d00;
    font-size: 12px;
}

.impersonation-banner-return[b-qh01r3rhye] {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 6px 14px;
    border: 1px solid #d46b08;
    border-radius: 8px;
    background: #fff;
    color: #ad4e00;
    cursor: pointer;
    font-weight: 600;
}

.impersonation-banner-return:hover:not(:disabled)[b-qh01r3rhye] {
    background: #fff1b8;
}

.impersonation-banner-return:disabled[b-qh01r3rhye] {
    cursor: wait;
    opacity: 0.65;
}

/* --------------------------------------------------------------------------
   Mobile Menu Toggle - Hidden on desktop, visible on tablet/mobile
   -------------------------------------------------------------------------- */
.mobile-menu-toggle[b-qh01r3rhye] {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: var(--radius-md, 12px);
    cursor: pointer;
    color: var(--text-secondary, #6b7280);
    transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}

.mobile-menu-toggle:hover[b-qh01r3rhye] {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-primary, #111827);
}

.mobile-menu-toggle:active[b-qh01r3rhye] {
    transform: scale(0.9);
}

.mobile-menu-toggle .anticon[b-qh01r3rhye] {
    font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   Sidebar Overlay - Backdrop for mobile sidebar
   -------------------------------------------------------------------------- */
.sidebar-overlay[b-qh01r3rhye] {
    display: none;
}

/* --------------------------------------------------------------------------
   Responsive: Large Desktop (> 1200px) — default styles apply
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Responsive: Small Desktop / Large Tablet (992px – 1200px)
   Compact nav tabs, tighter header spacing
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .modern-header[b-qh01r3rhye] {
        padding: 0 20px;
        gap: 16px;
    }

    .identity-trigger[b-qh01r3rhye] {
        min-width: 160px;
        max-width: 220px;
    }

    .identity-name[b-qh01r3rhye],
    .identity-level[b-qh01r3rhye] {
        max-width: 132px;
    }
}

/* --------------------------------------------------------------------------
   Responsive: Tablet (768px – 992px)
   Sidebar becomes off-canvas overlay, header simplifies
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    /* Sidebar: Fixed overlay off-canvas with slide transition */
    .modern-sidebar[b-qh01r3rhye] {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 1000;
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
        transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1),
                    box-shadow 300ms cubic-bezier(0.25, 1, 0.5, 1);
    }

    .modern-sidebar.collapsed[b-qh01r3rhye] {
        transform: translateX(-100%);
        box-shadow: none;
    }

    /* Show overlay backdrop when sidebar is open */
    .sidebar-overlay[b-qh01r3rhye] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 999;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        animation: overlayFadeIn-b-qh01r3rhye 250ms cubic-bezier(0.25, 1, 0.5, 1) both;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle[b-qh01r3rhye] {
        display: flex;
    }

    /* Header: Compact */
    .modern-header[b-qh01r3rhye] {
        padding: 0 16px;
        gap: 12px;
    }

    /* Keep module selector reachable while the sidebar is off-canvas. */
    .header-left[b-qh01r3rhye] {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        min-width: 0;
        gap: 8px;
    }

    .brand-logo[b-qh01r3rhye] {
        flex: 0 0 auto;
    }

    .current-module[b-qh01r3rhye] {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Content: Reduced padding */
    .modern-content[b-qh01r3rhye] {
        padding: 12px 20px 16px;
    }

    /* Collapse toggle in sidebar: hide on mobile (use overlay to close) */
    .collapse-toggle[b-qh01r3rhye] {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Responsive: Mobile (480px – 768px)
   Touch-optimized targets, simplified header
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .impersonation-banner[b-qh01r3rhye] {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 10px 12px;
    }

    .impersonation-banner-copy[b-qh01r3rhye] {
        flex-basis: calc(100% - 46px);
    }

    .impersonation-banner-return[b-qh01r3rhye] {
        width: 100%;
    }

    .modern-header[b-qh01r3rhye] {
        padding: 0 12px;
        gap: 8px;
        height: 56px;
    }

    .header-actions[b-qh01r3rhye] {
        gap: 2px;
        flex: 0 0 auto;
    }

    .brand-divider[b-qh01r3rhye],
    .current-module[b-qh01r3rhye] {
        display: none;
    }

    .header-btn[b-qh01r3rhye] {
        width: 36px;
        height: 36px;
    }

    .identity-trigger[b-qh01r3rhye] {
        width: auto;
        min-width: 150px;
        max-width: 190px;
        height: 40px;
    }

    .identity-avatar[b-qh01r3rhye] {
        width: 30px;
        height: 30px;
    }

    .identity-name[b-qh01r3rhye],
    .identity-level[b-qh01r3rhye] {
        max-width: 108px;
    }

    .nav-all-btn[b-qh01r3rhye] {
        width: 34px;
        height: 34px;
    }

    .modern-content[b-qh01r3rhye] {
        padding: 8px 12px 16px;
    }

    /* Breadcrumb: tighter on mobile */
    .page-breadcrumb[b-qh01r3rhye] {
        margin: 4px 0 8px 0;
    }

    /* Unauthorized card: full width on mobile */
    .unauthorized-card[b-qh01r3rhye] {
        margin: 40px 16px;
        padding: 32px 24px;
    }
}

/* --------------------------------------------------------------------------
   Responsive: Small Mobile (< 480px)
   Minimum viable layout, dropdown-only navigation
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .modern-header[b-qh01r3rhye] {
        padding: 0 8px;
        gap: 6px;
        height: 52px;
    }

    /* Make the "all modules" dropdown button more prominent */
    .brand-logo[b-qh01r3rhye] {
        width: 40px;
        height: 40px;
        border-radius: var(--radius-lg, 16px);
    }

    /* Wrapper adjusts */
    .top-nav-wrapper[b-qh01r3rhye] {
        flex: 0 0 auto;
    }

    .mobile-menu-toggle[b-qh01r3rhye] {
        width: 36px;
        height: 36px;
    }

    .header-btn[b-qh01r3rhye] {
        width: 34px;
        height: 34px;
    }

    .identity-trigger[b-qh01r3rhye] {
        width: auto;
        min-width: 132px;
        max-width: 152px;
        height: 38px;
        gap: 6px;
        padding-right: 6px;
    }

    .identity-avatar[b-qh01r3rhye] {
        width: 28px;
        height: 28px;
        border-radius: 9px;
    }

    .identity-name[b-qh01r3rhye],
    .identity-level[b-qh01r3rhye] {
        max-width: 78px;
    }

    .identity-caret[b-qh01r3rhye] {
        display: none;
    }

    .header-btn .anticon[b-qh01r3rhye] {
        font-size: 1rem;
    }

    .modern-content[b-qh01r3rhye] {
        padding: 8px 8px 12px;
    }

    /* Unauthorized card: edge-to-edge on small phones */
    .unauthorized-card[b-qh01r3rhye] {
        margin: 24px 8px;
        padding: 24px 16px;
    }
}

/* --------------------------------------------------------------------------
   Responsive: Landscape Mobile
   Shorter header, maximize vertical content space
   -------------------------------------------------------------------------- */
@media (max-height: 500px) and (orientation: landscape) {
    .modern-header[b-qh01r3rhye] {
        height: 48px;
    }

    .mobile-menu-toggle[b-qh01r3rhye] {
        width: 36px;
        height: 36px;
    }

    .header-btn[b-qh01r3rhye] {
        width: 34px;
        height: 34px;
    }

    .identity-trigger[b-qh01r3rhye] {
        width: auto;
        min-width: 132px;
        height: 38px;
    }

    .modern-content[b-qh01r3rhye] {
        padding: 6px 16px 8px;
    }

    /* Sidebar: narrower in landscape to save horizontal space */
    .modern-sidebar[b-qh01r3rhye] {
        width: 240px;
    }
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

/* Animation for sidebar toggle — smooth exponential deceleration */
[b-qh01r3rhye] .modern-sidebar {
    transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1),
                padding 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Smooth transitions for menu items */
[b-qh01r3rhye] .modern-sidebar-menu .ant-menu-item,
[b-qh01r3rhye] .modern-sidebar-menu .ant-menu-submenu-title {
    transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1);
}

[b-qh01r3rhye] .modern-sidebar-menu .ant-menu-item:active,
[b-qh01r3rhye] .modern-sidebar-menu .ant-menu-submenu-title:active {
    transform: scale(0.98);
}

.legacy-workflow-group-title[b-qh01r3rhye] {
    padding: 8px 18px 4px 34px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

@keyframes fadeIn-b-qh01r3rhye {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes overlayFadeIn-b-qh01r3rhye {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --------------------------------------------------------------------------
   Accessibility: Focus styles
   -------------------------------------------------------------------------- */
[b-qh01r3rhye] .header-btn:focus-visible,
[b-qh01r3rhye] .collapse-toggle:focus-visible,
[b-qh01r3rhye] .mobile-menu-toggle:focus-visible,
[b-qh01r3rhye] .nav-all-btn:focus-visible {
    outline: 2px solid var(--esmart-primary);
    outline-offset: 2px;
}

[b-qh01r3rhye] .identity-trigger:focus-visible {
    outline: 2px solid rgba(234, 88, 12, 0.38);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.08);
}

/* --------------------------------------------------------------------------
   Accessibility: Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    [b-qh01r3rhye] .modern-sidebar {
        transition: none;
    }

    [b-qh01r3rhye] .modern-sidebar-menu .ant-menu-item,
    [b-qh01r3rhye] .modern-sidebar-menu .ant-menu-submenu-title {
        transition: none;
        transform: none !important;
    }

    .sidebar-overlay[b-qh01r3rhye] {
        animation: none;
    }

    .nav-all-btn[b-qh01r3rhye],
    .mobile-menu-toggle[b-qh01r3rhye],
    .header-btn[b-qh01r3rhye],
    [b-qh01r3rhye] .collapse-toggle,
    [b-qh01r3rhye] .team-toggle,
    [b-qh01r3rhye] .team-logo,
    [b-qh01r3rhye] .team-selector {
        transition: none;
        animation: none;
    }

    [b-qh01r3rhye] .collapse-toggle .anticon,
    [b-qh01r3rhye] .team-toggle .anticon {
        transition: none;
        transform: none !important;
    }
}

/* --------------------------------------------------------------------------
   Print styles
   -------------------------------------------------------------------------- */
@media print {
    .modern-sidebar[b-qh01r3rhye],
    .modern-header[b-qh01r3rhye],
    .sidebar-overlay[b-qh01r3rhye] {
        display: none !important;
    }

    /* overrides height:100vh, overflow:hidden */
    .modern-layout[b-qh01r3rhye] {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    /* overrides flex column with min-height:0 */
    .modern-main[b-qh01r3rhye] {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    /* overrides overflow-y:auto */
    .modern-content[b-qh01r3rhye] {
        padding: 0 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
}
/* _content/esmartx.web/Components/Pages/ChangePassword.razor.rz.scp.css */
/* ChangePassword Page - Matches Login.razor visual style */

/* ==================== Page Layout ==================== */

.cp-page[b-tb8nvhotqg] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* ==================== Background Shapes ==================== */

.bg-shapes[b-tb8nvhotqg] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape[b-tb8nvhotqg] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1[b-tb8nvhotqg] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f472b6, #ec4899, #db2777);
    bottom: -150px;
    left: -100px;
    animation: float1-b-tb8nvhotqg 25s ease-in-out infinite;
}

.shape-2[b-tb8nvhotqg] {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #fb923c, #ea580c, #c2410c);
    top: -100px;
    right: -50px;
    animation: float2-b-tb8nvhotqg 20s ease-in-out infinite;
}

.shape-3[b-tb8nvhotqg] {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #22d3d1, #14b8a6, #0d9488);
    top: 10%;
    left: 5%;
    animation: float3-b-tb8nvhotqg 22s ease-in-out infinite;
}

.shape-4[b-tb8nvhotqg] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    bottom: 10%;
    right: 10%;
    animation: float4-b-tb8nvhotqg 18s ease-in-out infinite;
}

.shape-5[b-tb8nvhotqg] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
    top: 40%;
    right: 25%;
    animation: float5-b-tb8nvhotqg 23s ease-in-out infinite;
}

@keyframes float1-b-tb8nvhotqg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float2-b-tb8nvhotqg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes float3-b-tb8nvhotqg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 25px) scale(0.9); }
}

@keyframes float4-b-tb8nvhotqg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.05); }
}

@keyframes float5-b-tb8nvhotqg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(0.95); }
}

/* ==================== Main Container ==================== */

.cp-container[b-tb8nvhotqg] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==================== Logo Section ==================== */

.logo-section[b-tb8nvhotqg] {
    text-align: center;
    margin-bottom: 32px;
}

.brand-logo[b-tb8nvhotqg] {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.35);
}

.brand-logo[b-tb8nvhotqg]  .logo-icon {
    font-size: 36px;
    color: white;
}

.brand-title[b-tb8nvhotqg] {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.brand-tagline[b-tb8nvhotqg] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* ==================== Card ==================== */

.cp-card[b-tb8nvhotqg] {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.04);
}

/* ==================== Form Content ==================== */

.form-content[b-tb8nvhotqg] {
    width: 100%;
}

.form-header[b-tb8nvhotqg] {
    text-align: center;
    margin-bottom: 28px;
}

.form-title[b-tb8nvhotqg] {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.form-subtitle[b-tb8nvhotqg] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==================== Form Styling ==================== */

[b-tb8nvhotqg] .cp-form .ant-form-item {
    margin-bottom: 20px;
}

[b-tb8nvhotqg] .cp-form .ant-form-item-label > label {
    color: #334155;
    font-weight: 500;
    font-size: 13px;
    height: auto;
    margin-bottom: 6px;
}

[b-tb8nvhotqg] .cp-form .ant-form-item-label > label::before {
    color: #ef4444 !important;
}

[b-tb8nvhotqg] .cp-form .ant-input,
[b-tb8nvhotqg] .cp-form .ant-input-affix-wrapper {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    color: #1e293b !important;
    transition: all 0.2s ease;
    height: 48px !important;
    font-size: 15px !important;
    padding: 12px 16px !important;
}

[b-tb8nvhotqg] .cp-form .ant-input:hover,
[b-tb8nvhotqg] .cp-form .ant-input-affix-wrapper:hover {
    border-color: #94a3b8 !important;
}

[b-tb8nvhotqg] .cp-form .ant-input:focus,
[b-tb8nvhotqg] .cp-form .ant-input-affix-wrapper:focus,
[b-tb8nvhotqg] .cp-form .ant-input-affix-wrapper-focused {
    border-color: #ea580c !important;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1) !important;
}

[b-tb8nvhotqg] .cp-form .ant-input::placeholder {
    color: #94a3b8 !important;
}

[b-tb8nvhotqg] .cp-form .ant-input-password {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    height: 48px !important;
    padding: 0 16px !important;
}

[b-tb8nvhotqg] .cp-form .ant-input-password:hover {
    border-color: #94a3b8 !important;
}

[b-tb8nvhotqg] .cp-form .ant-input-password.ant-input-affix-wrapper-focused {
    border-color: #ea580c !important;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1) !important;
}

[b-tb8nvhotqg] .cp-form .ant-input-password .ant-input {
    background: transparent !important;
    border: none !important;
    height: auto !important;
    padding: 0 !important;
    box-shadow: none !important;
}

[b-tb8nvhotqg] .cp-form .ant-input-password-icon {
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
}

[b-tb8nvhotqg] .cp-form .ant-input-password-icon:hover {
    color: #334155;
}

[b-tb8nvhotqg] .cp-form .ant-input-disabled,
[b-tb8nvhotqg] .cp-form .ant-input-affix-wrapper-disabled {
    background: #f1f5f9 !important;
    color: #64748b !important;
    cursor: not-allowed;
}

[b-tb8nvhotqg] .form-submit {
    margin-top: 28px;
    margin-bottom: 0;
}

/* ==================== Buttons ==================== */

[b-tb8nvhotqg] .submit-btn.ant-btn-primary {
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-tb8nvhotqg] .submit-btn.ant-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
    transform: translateY(-1px);
}

[b-tb8nvhotqg] .submit-btn.ant-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

/* ==================== Status Icon (success) ==================== */

.status-icon[b-tb8nvhotqg] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce-b-tb8nvhotqg 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconBounce-b-tb8nvhotqg {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.status-icon.success[b-tb8nvhotqg] {
    background: rgba(16, 185, 129, 0.1);
}

.status-icon.success[b-tb8nvhotqg]  .anticon {
    font-size: 32px;
    color: #10b981;
}

/* ==================== Password Rules ==================== */

.password-rules[b-tb8nvhotqg] {
    margin-bottom: 8px;
}

[b-tb8nvhotqg] .password-rules .ant-alert {
    border-radius: 12px;
}

/* ==================== Alerts ==================== */

.alert-container[b-tb8nvhotqg] {
    margin-top: 20px;
}

[b-tb8nvhotqg] .alert-container .ant-alert {
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

[b-tb8nvhotqg] .alert-container .ant-alert-message {
    color: #b91c1c;
}

/* ==================== Back Link ==================== */

.back-link[b-tb8nvhotqg] {
    text-align: center;
    margin-top: 20px;
}

.back-link a[b-tb8nvhotqg] {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.back-link a:hover[b-tb8nvhotqg] {
    color: #ea580c;
}

/* ==================== Footer ==================== */

.cp-footer[b-tb8nvhotqg] {
    text-align: center;
    margin-top: 32px;
}

.cp-footer p[b-tb8nvhotqg] {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* ==================== Animations ==================== */

.animate-fade-in[b-tb8nvhotqg] {
    animation: fadeSlideIn-b-tb8nvhotqg 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeSlideIn-b-tb8nvhotqg {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-shake[b-tb8nvhotqg] {
    animation: shake-b-tb8nvhotqg 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake-b-tb8nvhotqg {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* ==================== Responsive Design ==================== */

@media (max-width: 480px) {
    .cp-page[b-tb8nvhotqg] {
        padding: 16px;
    }

    .cp-container[b-tb8nvhotqg] {
        max-width: 100%;
    }

    .logo-section[b-tb8nvhotqg] {
        margin-bottom: 24px;
    }

    .brand-logo[b-tb8nvhotqg] {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .brand-logo[b-tb8nvhotqg]  .logo-icon {
        font-size: 30px;
    }

    .brand-title[b-tb8nvhotqg] {
        font-size: 26px;
    }

    .cp-card[b-tb8nvhotqg] {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .form-title[b-tb8nvhotqg] {
        font-size: 22px;
    }

    .status-icon[b-tb8nvhotqg] {
        width: 56px;
        height: 56px;
    }

    .status-icon.success[b-tb8nvhotqg]  .anticon {
        font-size: 28px;
    }

    .shape-1[b-tb8nvhotqg], .shape-2[b-tb8nvhotqg] {
        width: 300px;
        height: 300px;
    }

    .shape-3[b-tb8nvhotqg], .shape-4[b-tb8nvhotqg], .shape-5[b-tb8nvhotqg] {
        width: 200px;
        height: 200px;
    }
}

/* ==================== Reduced Motion ==================== */

@media (prefers-reduced-motion: reduce) {
    .shape[b-tb8nvhotqg],
    .animate-fade-in[b-tb8nvhotqg],
    .animate-shake[b-tb8nvhotqg],
    .status-icon[b-tb8nvhotqg] {
        animation: none;
    }

    [b-tb8nvhotqg] .submit-btn.ant-btn-primary:hover:not(:disabled) {
        transform: none;
    }
}
/* _content/esmartx.web/Components/Pages/HelpShow.razor.rz.scp.css */
.help-show[b-ik3sbjitb8] {
    min-height: 100vh;
    padding: 18px 20px;
    color: #111827;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.help-show__state[b-ik3sbjitb8] {
    color: #6b7280;
}

.help-show__content :deep(img)[b-ik3sbjitb8] {
    max-width: 100%;
    height: auto;
}
/* _content/esmartx.web/Components/Pages/Login.razor.rz.scp.css */
/* Login Page - Single Panel Centered Design with Colorful Background */

/* ==================== Page Layout ==================== */

.login-page[b-k9puwoldpe] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* ==================== Background Shapes ==================== */

.bg-shapes[b-k9puwoldpe] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape[b-k9puwoldpe] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

/* Pink/Magenta blob - bottom left */
.shape-1[b-k9puwoldpe] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f472b6, #ec4899, #db2777);
    bottom: -150px;
    left: -100px;
    animation: float1-b-k9puwoldpe 25s ease-in-out infinite;
}

/* Orange blob - top right */
.shape-2[b-k9puwoldpe] {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #fb923c, #ea580c, #c2410c);
    top: -100px;
    right: -50px;
    animation: float2-b-k9puwoldpe 20s ease-in-out infinite;
}

/* Cyan/Teal blob - top left */
.shape-3[b-k9puwoldpe] {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #22d3d1, #14b8a6, #0d9488);
    top: 10%;
    left: 5%;
    animation: float3-b-k9puwoldpe 22s ease-in-out infinite;
}

/* Yellow/Orange blob - bottom right */
.shape-4[b-k9puwoldpe] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    bottom: 10%;
    right: 10%;
    animation: float4-b-k9puwoldpe 18s ease-in-out infinite;
}

/* Purple blob - center right */
.shape-5[b-k9puwoldpe] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
    top: 40%;
    right: 25%;
    animation: float5-b-k9puwoldpe 23s ease-in-out infinite;
}

@keyframes float1-b-k9puwoldpe {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float2-b-k9puwoldpe {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes float3-b-k9puwoldpe {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 25px) scale(0.9); }
}

@keyframes float4-b-k9puwoldpe {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.05); }
}

@keyframes float5-b-k9puwoldpe {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(0.95); }
}

/* ==================== Main Container ==================== */

.login-container[b-k9puwoldpe] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==================== Logo Section ==================== */

.logo-section[b-k9puwoldpe] {
    text-align: center;
    margin-bottom: 32px;
}

.brand-logo[b-k9puwoldpe] {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.35);
}

.brand-logo[b-k9puwoldpe]  .logo-icon {
    font-size: 36px;
    color: white;
}

.brand-title[b-k9puwoldpe] {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.brand-tagline[b-k9puwoldpe] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* ==================== Login Card ==================== */

.login-card[b-k9puwoldpe] {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.04);
}

/* ==================== Form Content ==================== */

.form-content[b-k9puwoldpe] {
    width: 100%;
}

.admin-otp-profile-switch-flow[b-k9puwoldpe] {
    display: grid;
    gap: 16px;
}

.form-header[b-k9puwoldpe] {
    text-align: center;
    margin-bottom: 28px;
}

.form-title[b-k9puwoldpe] {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.form-subtitle[b-k9puwoldpe] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==================== Form Styling ==================== */

[b-k9puwoldpe] .login-form .ant-form-item {
    margin-bottom: 20px;
}

[b-k9puwoldpe] .login-form .ant-form-item-label > label {
    color: #334155;
    font-weight: 500;
    font-size: 13px;
    height: auto;
    margin-bottom: 6px;
}

[b-k9puwoldpe] .login-form .ant-form-item-label > label::before {
    color: #ef4444 !important;
}

/* Input Base Styles */
[b-k9puwoldpe] .login-form .ant-input,
[b-k9puwoldpe] .login-form .ant-input-affix-wrapper {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    color: #1e293b !important;
    transition: all 0.2s ease;
    height: 48px !important;
    font-size: 15px !important;
    padding: 12px 16px !important;
}

[b-k9puwoldpe] .login-form .ant-input:hover,
[b-k9puwoldpe] .login-form .ant-input-affix-wrapper:hover {
    border-color: #94a3b8 !important;
}

[b-k9puwoldpe] .login-form .ant-input:focus,
[b-k9puwoldpe] .login-form .ant-input-affix-wrapper:focus,
[b-k9puwoldpe] .login-form .ant-input-affix-wrapper-focused {
    border-color: #ea580c !important;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1) !important;
}

[b-k9puwoldpe] .login-form .ant-input::placeholder {
    color: #94a3b8 !important;
}

/* Password Input Specific */
[b-k9puwoldpe] .login-form .ant-input-password {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    height: 48px !important;
    padding: 0 16px !important;
}

[b-k9puwoldpe] .login-form .ant-input-password:hover {
    border-color: #94a3b8 !important;
}

[b-k9puwoldpe] .login-form .ant-input-password.ant-input-affix-wrapper-focused {
    border-color: #ea580c !important;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1) !important;
}

[b-k9puwoldpe] .login-form .ant-input-password .ant-input {
    background: transparent !important;
    border: none !important;
    height: auto !important;
    padding: 0 !important;
    box-shadow: none !important;
}

[b-k9puwoldpe] .login-form .ant-input-password-icon {
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
}

[b-k9puwoldpe] .login-form .ant-input-password-icon:hover {
    color: #334155;
}

/* Session retention options */
[b-k9puwoldpe] .login-options-form-item.ant-form-item {
    margin-bottom: 20px;
}

.login-session-options[b-k9puwoldpe] {
    overflow: hidden;
    background: #fffdfb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.03);
}

.login-option[b-k9puwoldpe] {
    min-height: 52px;
    padding: 11px 13px;
    background: #fffdfb;
    transition: background-color 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

.login-option + .login-option[b-k9puwoldpe] {
    border-top: 1px solid #e5e7eb;
}

.login-profile-option.selected[b-k9puwoldpe] {
    background: #fff7ed;
}

.login-option:focus-within[b-k9puwoldpe] {
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 0 2px #ea580c;
}

[b-k9puwoldpe] .login-option .ant-checkbox-wrapper {
    display: inline-flex;
    align-items: center;
    color: #111827;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
}

[b-k9puwoldpe] .login-option .ant-checkbox {
    top: 0;
}

[b-k9puwoldpe] .login-option .ant-checkbox-inner {
    border-color: #9ca3af;
    border-radius: 4px;
}

[b-k9puwoldpe] .login-option .ant-checkbox-checked .ant-checkbox-inner {
    background: #ea580c;
    border-color: #ea580c;
}

[b-k9puwoldpe] .login-option .ant-checkbox-wrapper:hover .ant-checkbox-inner,
[b-k9puwoldpe] .login-option .ant-checkbox:hover .ant-checkbox-inner,
[b-k9puwoldpe] .login-option .ant-checkbox-input:focus + .ant-checkbox-inner {
    border-color: #ea580c;
}

[b-k9puwoldpe] .login-option .ant-checkbox-input:focus + .ant-checkbox-inner {
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.14);
}

.login-option-label[b-k9puwoldpe] {
    color: #111827;
}

.login-option-help[b-k9puwoldpe],
.login-password-safety[b-k9puwoldpe] {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 4px 0 0 24px;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
}

.login-password-safety[b-k9puwoldpe] {
    color: #7c2d12;
}

.login-password-safety[b-k9puwoldpe]  .anticon {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #c2410c;
    font-size: 0.6875rem;
}

/* Form Submit */
[b-k9puwoldpe] .form-submit {
    margin-top: 24px;
    margin-bottom: 0;
}

/* ==================== Buttons ==================== */

/* Primary Button */
[b-k9puwoldpe] .ant-btn-primary {
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-k9puwoldpe] .ant-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
    transform: translateY(-1px);
}

[b-k9puwoldpe] .ant-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

[b-k9puwoldpe] .ant-btn-primary:disabled {
    background: #94a3b8;
    box-shadow: none;
    opacity: 0.6;
}

/* Back Button */
.back-btn[b-k9puwoldpe] {
    margin-top: 0;
}

[b-k9puwoldpe] .back-btn.ant-btn-default {
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-k9puwoldpe] .back-btn.ant-btn-default:hover:not(:disabled) {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #1e293b;
}

/* ==================== Organization Selection ==================== */

.org-selection-content[b-k9puwoldpe],
.no-orgs-content[b-k9puwoldpe] {
    text-align: center;
}

.status-icon[b-k9puwoldpe] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce-b-k9puwoldpe 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconBounce-b-k9puwoldpe {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.status-icon.success[b-k9puwoldpe] {
    background: rgba(16, 185, 129, 0.1);
}

.status-icon.success[b-k9puwoldpe]  .anticon {
    font-size: 32px;
    color: #10b981;
}

.status-icon.warning[b-k9puwoldpe] {
    background: rgba(245, 158, 11, 0.1);
}

.status-icon.warning[b-k9puwoldpe]  .anticon {
    font-size: 32px;
    color: #f59e0b;
}

/* Organization Cards */
.org-cards-container[b-k9puwoldpe] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    max-height: 280px;
    overflow-y: auto;
    padding: 4px;
}

.org-cards-container[b-k9puwoldpe]::-webkit-scrollbar {
    width: 6px;
}

.org-cards-container[b-k9puwoldpe]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.org-cards-container[b-k9puwoldpe]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.org-cards-container[b-k9puwoldpe]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.org-card[b-k9puwoldpe] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.org-card:hover[b-k9puwoldpe] {
    border-color: #94a3b8;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.org-card.selected[b-k9puwoldpe] {
    border-color: #ea580c;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.05) 0%, rgba(194, 65, 12, 0.08) 100%);
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.15);
}

.org-card.selected:hover[b-k9puwoldpe] {
    border-color: #c2410c;
    transform: translateY(-2px);
}

.org-card-icon[b-k9puwoldpe] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.org-card.selected .org-card-icon[b-k9puwoldpe] {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.org-card-icon[b-k9puwoldpe]  .anticon {
    font-size: 22px;
    color: #64748b;
    transition: color 0.25s ease;
}

.org-card.selected .org-card-icon[b-k9puwoldpe]  .anticon {
    color: #ffffff;
}

.org-card-content[b-k9puwoldpe] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.org-card-name[b-k9puwoldpe] {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.org-card.selected .org-card-name[b-k9puwoldpe] {
    color: #9a3412;
}

.org-card-level[b-k9puwoldpe] {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.org-card.selected .org-card-level[b-k9puwoldpe] {
    color: #ea580c;
}

.org-card-check[b-k9puwoldpe] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.org-card-check[b-k9puwoldpe]  .anticon {
    font-size: 22px;
    color: #ea580c;
    animation: checkPop-b-k9puwoldpe 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkPop-b-k9puwoldpe {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* Continue Button Enhancement */
[b-k9puwoldpe] .continue-btn.ant-btn-primary {
    margin-bottom: 12px;
}

[b-k9puwoldpe] .continue-btn.ant-btn-primary:not(:disabled) {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

[b-k9puwoldpe] .continue-btn.ant-btn-primary:disabled {
    background: #94a3b8;
    box-shadow: none;
    opacity: 0.5;
}

/* Action Buttons */
.action-buttons[b-k9puwoldpe] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ==================== Alerts ==================== */

.alert-container[b-k9puwoldpe] {
    margin-top: 20px;
}

[b-k9puwoldpe] .alert-container .ant-alert {
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

[b-k9puwoldpe] .alert-container .ant-alert-message {
    color: #b91c1c;
}

[b-k9puwoldpe] .warning-alert {
    margin-bottom: 24px;
    border-radius: 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
}

[b-k9puwoldpe] .warning-alert .ant-alert-message {
    color: #92400e;
}

/* ==================== Footer ==================== */

.login-footer[b-k9puwoldpe] {
    text-align: center;
    margin-top: 32px;
}

.login-footer p[b-k9puwoldpe] {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* ==================== Animations ==================== */

.animate-fade-in[b-k9puwoldpe] {
    animation: fadeSlideIn-b-k9puwoldpe 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeSlideIn-b-k9puwoldpe {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-shake[b-k9puwoldpe] {
    animation: shake-b-k9puwoldpe 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake-b-k9puwoldpe {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* ==================== Responsive Design ==================== */

@media (max-width: 480px) {
    .login-page[b-k9puwoldpe] {
        padding: 16px;
    }

    .login-container[b-k9puwoldpe] {
        max-width: 100%;
    }

    .logo-section[b-k9puwoldpe] {
        margin-bottom: 24px;
    }

    .brand-logo[b-k9puwoldpe] {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .brand-logo[b-k9puwoldpe]  .logo-icon {
        font-size: 30px;
    }

    .brand-title[b-k9puwoldpe] {
        font-size: 26px;
    }

    .login-card[b-k9puwoldpe] {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .form-title[b-k9puwoldpe] {
        font-size: 22px;
    }

    .status-icon[b-k9puwoldpe] {
        width: 56px;
        height: 56px;
    }

    .status-icon.success[b-k9puwoldpe]  .anticon,
    .status-icon.warning[b-k9puwoldpe]  .anticon {
        font-size: 28px;
    }

    /* Organization cards mobile */
    .org-cards-container[b-k9puwoldpe] {
        max-height: 220px;
    }

    .org-card[b-k9puwoldpe] {
        padding: 14px;
        gap: 12px;
    }

    .org-card-icon[b-k9puwoldpe] {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .org-card-icon[b-k9puwoldpe]  .anticon {
        font-size: 18px;
    }

    .org-card-name[b-k9puwoldpe] {
        font-size: 14px;
    }

    .org-card-level[b-k9puwoldpe] {
        font-size: 11px;
    }

    .org-card-check[b-k9puwoldpe]  .anticon {
        font-size: 20px;
    }

    /* Smaller blobs on mobile */
    .shape-1[b-k9puwoldpe], .shape-2[b-k9puwoldpe] {
        width: 300px;
        height: 300px;
    }

    .shape-3[b-k9puwoldpe], .shape-4[b-k9puwoldpe], .shape-5[b-k9puwoldpe] {
        width: 200px;
        height: 200px;
    }
}

/* ==================== Reduced Motion ==================== */

@media (prefers-reduced-motion: reduce) {
    .shape[b-k9puwoldpe],
    .animate-fade-in[b-k9puwoldpe],
    .animate-shake[b-k9puwoldpe],
    .status-icon[b-k9puwoldpe] {
        animation: none;
    }

    [b-k9puwoldpe] .ant-btn-primary:hover:not(:disabled) {
        transform: none;
    }

    .org-card:hover[b-k9puwoldpe],
    .org-card.selected:hover[b-k9puwoldpe] {
        transform: none;
    }

    .org-card-check[b-k9puwoldpe]  .anticon {
        animation: none;
    }

    .login-option[b-k9puwoldpe] {
        transition: none;
    }
}

/* ==================== Azure AD Login ==================== */

.azure-divider[b-k9puwoldpe] {
    display: flex;
    align-items: center;
    margin: 20px 0 16px;
    gap: 12px;
}

.azure-divider[b-k9puwoldpe]::before,
.azure-divider[b-k9puwoldpe]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.azure-divider-text[b-k9puwoldpe] {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.azure-login-btn[b-k9puwoldpe] {
    height: 44px !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
    background: #fffdfb !important;
    border: 1px solid #d1d5db !important;
    color: #374151 !important;
    transition: all 0.2s ease !important;
    margin-bottom: 8px !important;
}

.azure-login-btn:hover[b-k9puwoldpe] {
    background: #fff7ed !important;
    border-color: #fb923c !important;
    color: #9a3412 !important;
}

.azure-remark[b-k9puwoldpe] {
    text-align: center;
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 4px;
}
/* _content/esmartx.web/Components/Pages/LoginEmailOtp.razor.rz.scp.css */
/* LoginEmailOtp Page - Reuses Login page styling pattern */

/* ==================== Page Layout ==================== */

.login-page[b-74jk6ncei8] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* ==================== Background Shapes ==================== */

.bg-shapes[b-74jk6ncei8] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape[b-74jk6ncei8] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1[b-74jk6ncei8] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f472b6, #ec4899, #db2777);
    bottom: -150px;
    left: -100px;
    animation: float1-b-74jk6ncei8 25s ease-in-out infinite;
}

.shape-2[b-74jk6ncei8] {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #fb923c, #ea580c, #c2410c);
    top: -100px;
    right: -50px;
    animation: float2-b-74jk6ncei8 20s ease-in-out infinite;
}

.shape-3[b-74jk6ncei8] {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #22d3d1, #14b8a6, #0d9488);
    top: 10%;
    left: 5%;
    animation: float3-b-74jk6ncei8 22s ease-in-out infinite;
}

.shape-4[b-74jk6ncei8] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    bottom: 10%;
    right: 10%;
    animation: float4-b-74jk6ncei8 18s ease-in-out infinite;
}

.shape-5[b-74jk6ncei8] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
    top: 40%;
    right: 25%;
    animation: float5-b-74jk6ncei8 23s ease-in-out infinite;
}

@keyframes float1-b-74jk6ncei8 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float2-b-74jk6ncei8 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes float3-b-74jk6ncei8 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 25px) scale(0.9); }
}

@keyframes float4-b-74jk6ncei8 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.05); }
}

@keyframes float5-b-74jk6ncei8 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(0.95); }
}

/* ==================== Main Container ==================== */

.login-container[b-74jk6ncei8] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==================== Logo Section ==================== */

.logo-section[b-74jk6ncei8] {
    text-align: center;
    margin-bottom: 32px;
}

.brand-logo[b-74jk6ncei8] {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.35);
}

.brand-logo[b-74jk6ncei8]  .logo-icon {
    font-size: 36px;
    color: white;
}

.brand-title[b-74jk6ncei8] {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.brand-tagline[b-74jk6ncei8] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* ==================== Login Card ==================== */

.login-card[b-74jk6ncei8] {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.04);
}

/* ==================== Form Content ==================== */

.form-content[b-74jk6ncei8] {
    width: 100%;
}

.form-header[b-74jk6ncei8] {
    text-align: center;
    margin-bottom: 24px;
}

.form-title[b-74jk6ncei8] {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.form-subtitle[b-74jk6ncei8] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==================== Status Icon ==================== */

.status-icon[b-74jk6ncei8] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce-b-74jk6ncei8 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconBounce-b-74jk6ncei8 {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.status-icon.info[b-74jk6ncei8] {
    background: rgba(234, 88, 12, 0.1);
}

.status-icon.info[b-74jk6ncei8]  .anticon {
    font-size: 32px;
    color: #ea580c;
}

/* ==================== OTP Info Section ==================== */

.otp-info-section[b-74jk6ncei8] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.otp-info-row[b-74jk6ncei8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

.otp-info-row + .otp-info-row[b-74jk6ncei8] {
    border-top: 1px solid #f1f5f9;
}

.otp-info-label[b-74jk6ncei8] {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.otp-info-value[b-74jk6ncei8] {
    font-size: 13px;
    color: #1e293b;
    font-weight: 600;
}

/* ==================== Timer Section ==================== */

.otp-timer-section[b-74jk6ncei8] {
    text-align: center;
    margin-bottom: 20px;
}

.otp-timer[b-74jk6ncei8] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 14px;
    font-weight: 500;
}

.otp-timer[b-74jk6ncei8]  .anticon {
    font-size: 16px;
}

.otp-timer.expired[b-74jk6ncei8] {
    background: #fef2f2;
    color: #dc2626;
}

/* ==================== OTP Input Section ==================== */

.otp-input-section[b-74jk6ncei8] {
    margin-bottom: 24px;
}

[b-74jk6ncei8] .otp-input-section .ant-input {
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    color: #1e293b !important;
    transition: all 0.2s ease;
}

[b-74jk6ncei8] .otp-input-section .ant-input:hover {
    border-color: #94a3b8 !important;
}

[b-74jk6ncei8] .otp-input-section .ant-input:focus {
    border-color: #ea580c !important;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1) !important;
}

[b-74jk6ncei8] .otp-input-section .ant-input::placeholder {
    color: #94a3b8 !important;
    font-size: 15px !important;
    letter-spacing: normal !important;
}

[b-74jk6ncei8] .otp-input-section .ant-input:disabled {
    background: #f1f5f9 !important;
    color: #94a3b8 !important;
    cursor: not-allowed;
}

/* ==================== Action Buttons ==================== */

.otp-actions[b-74jk6ncei8] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Primary Button */
[b-74jk6ncei8] .ant-btn-primary {
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-74jk6ncei8] .ant-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
    transform: translateY(-1px);
}

[b-74jk6ncei8] .ant-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

[b-74jk6ncei8] .ant-btn-primary:disabled {
    background: #94a3b8;
    box-shadow: none;
    opacity: 0.6;
}

[b-74jk6ncei8] .continue-btn.ant-btn-primary {
    margin-bottom: 0;
}

/* Resend Button */
[b-74jk6ncei8] .resend-btn.ant-btn-default {
    height: 44px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    color: #2563eb;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-74jk6ncei8] .resend-btn.ant-btn-default:hover:not(:disabled) {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1d4ed8;
}

[b-74jk6ncei8] .resend-btn.ant-btn-default:disabled {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    opacity: 0.7;
}

/* Back Button */
[b-74jk6ncei8] .back-btn.ant-btn-default {
    height: 44px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-74jk6ncei8] .back-btn.ant-btn-default:hover:not(:disabled) {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #1e293b;
}

/* ==================== Alerts ==================== */

.alert-container[b-74jk6ncei8] {
    margin-top: 20px;
}

[b-74jk6ncei8] .alert-container .ant-alert {
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

[b-74jk6ncei8] .alert-container .ant-alert-message {
    color: #b91c1c;
}

/* ==================== Footer ==================== */

.login-footer[b-74jk6ncei8] {
    text-align: center;
    margin-top: 32px;
}

.login-footer p[b-74jk6ncei8] {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* ==================== Animations ==================== */

.animate-fade-in[b-74jk6ncei8] {
    animation: fadeSlideIn-b-74jk6ncei8 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeSlideIn-b-74jk6ncei8 {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-shake[b-74jk6ncei8] {
    animation: shake-b-74jk6ncei8 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake-b-74jk6ncei8 {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* ==================== Responsive Design ==================== */

@media (max-width: 480px) {
    .login-page[b-74jk6ncei8] {
        padding: 16px;
    }

    .login-container[b-74jk6ncei8] {
        max-width: 100%;
    }

    .logo-section[b-74jk6ncei8] {
        margin-bottom: 24px;
    }

    .brand-logo[b-74jk6ncei8] {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .brand-logo[b-74jk6ncei8]  .logo-icon {
        font-size: 30px;
    }

    .brand-title[b-74jk6ncei8] {
        font-size: 26px;
    }

    .login-card[b-74jk6ncei8] {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .form-title[b-74jk6ncei8] {
        font-size: 22px;
    }

    .status-icon[b-74jk6ncei8] {
        width: 56px;
        height: 56px;
    }

    .status-icon.info[b-74jk6ncei8]  .anticon {
        font-size: 28px;
    }

    .shape-1[b-74jk6ncei8], .shape-2[b-74jk6ncei8] {
        width: 300px;
        height: 300px;
    }

    .shape-3[b-74jk6ncei8], .shape-4[b-74jk6ncei8], .shape-5[b-74jk6ncei8] {
        width: 200px;
        height: 200px;
    }
}

/* ==================== Reduced Motion ==================== */

@media (prefers-reduced-motion: reduce) {
    .shape[b-74jk6ncei8],
    .animate-fade-in[b-74jk6ncei8],
    .animate-shake[b-74jk6ncei8],
    .status-icon[b-74jk6ncei8] {
        animation: none;
    }

    [b-74jk6ncei8] .ant-btn-primary:hover:not(:disabled) {
        transform: none;
    }
}
/* _content/esmartx.web/Components/Pages/ModuleMonitoring/MonitoringProcess.razor.rz.scp.css */
.admin-mode-banner[b-8bqj1lzyg6] {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fecaca;
    margin-bottom: 16px;
}

.design-mode-banner[b-8bqj1lzyg6] {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #9a3412;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fed7aa;
    margin-bottom: 16px;
}
/* _content/esmartx.web/Components/Pages/ModuleMR/PendingDocument/PlanDetail.razor.rz.scp.css */
/* ไฟล์นี้ว่างโดยตั้งใจ

   CSS ของ Section A/B ย้ายไปอยู่ใน <style> ที่หัว PlanDetail.razor แล้ว
   เพราะ scoped css (.razor.css) ยิงไม่ถึง ModuleFieldWrapper / AppField
   ซึ่งอยู่คนละ assembly (esmartx.ui) — ::deep ทะลุได้แค่ลูกที่ render
   จาก markup ของไฟล์นี้เอง ไม่ทะลุเข้า component ต่าง assembly

   ถ้าจะเพิ่ม style ที่ผูกกับ markup ของไฟล์นี้โดยตรง ค่อยมาเขียนที่นี่ได้ */
/* _content/esmartx.web/Components/Pages/Modules/DocumentControl/report/ControlledDocumentReport.razor.rz.scp.css */
/* Filter field labels */
.filter-label[b-zc94h1xn95] {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    display: block;
}

.zoom-filter[b-zc94h1xn95] {
    display: flex;
    align-items: stretch;
    gap: var(--spacing-xs);
    min-width: 0;
}

.zoom-filter > button[b-zc94h1xn95] {
    flex: 0 0 36px;
}

/* Doc number link */
.doc-link[b-zc94h1xn95] {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.doc-link:hover[b-zc94h1xn95] {
    color: var(--esmart-primary);
}

/* Date issue highlight */
.date-issue[b-zc94h1xn95] {
    color: var(--accent-rose-solid);
}
/* _content/esmartx.web/Components/Pages/RequestResetPassword.razor.rz.scp.css */
/* RequestResetPassword Page - Matches Login.razor visual style */

/* ==================== Page Layout ==================== */

.rrp-page[b-sw0b7xaprm] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* ==================== Background Shapes ==================== */

.bg-shapes[b-sw0b7xaprm] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape[b-sw0b7xaprm] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1[b-sw0b7xaprm] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f472b6, #ec4899, #db2777);
    bottom: -150px;
    left: -100px;
    animation: float1-b-sw0b7xaprm 25s ease-in-out infinite;
}

.shape-2[b-sw0b7xaprm] {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #fb923c, #ea580c, #c2410c);
    top: -100px;
    right: -50px;
    animation: float2-b-sw0b7xaprm 20s ease-in-out infinite;
}

.shape-3[b-sw0b7xaprm] {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #22d3d1, #14b8a6, #0d9488);
    top: 10%;
    left: 5%;
    animation: float3-b-sw0b7xaprm 22s ease-in-out infinite;
}

.shape-4[b-sw0b7xaprm] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    bottom: 10%;
    right: 10%;
    animation: float4-b-sw0b7xaprm 18s ease-in-out infinite;
}

.shape-5[b-sw0b7xaprm] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
    top: 40%;
    right: 25%;
    animation: float5-b-sw0b7xaprm 23s ease-in-out infinite;
}

@keyframes float1-b-sw0b7xaprm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float2-b-sw0b7xaprm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes float3-b-sw0b7xaprm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 25px) scale(0.9); }
}

@keyframes float4-b-sw0b7xaprm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.05); }
}

@keyframes float5-b-sw0b7xaprm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(0.95); }
}

/* ==================== Main Container ==================== */

.rrp-container[b-sw0b7xaprm] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==================== Logo Section ==================== */

.logo-section[b-sw0b7xaprm] {
    text-align: center;
    margin-bottom: 32px;
}

.brand-logo[b-sw0b7xaprm] {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.35);
}

.brand-logo[b-sw0b7xaprm]  .logo-icon {
    font-size: 36px;
    color: white;
}

.brand-title[b-sw0b7xaprm] {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.brand-tagline[b-sw0b7xaprm] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* ==================== Card ==================== */

.rrp-card[b-sw0b7xaprm] {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.04);
}

/* ==================== Form Content ==================== */

.form-content[b-sw0b7xaprm] {
    width: 100%;
}

.form-header[b-sw0b7xaprm] {
    text-align: center;
    margin-bottom: 28px;
}

.form-title[b-sw0b7xaprm] {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.form-subtitle[b-sw0b7xaprm] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==================== Form Styling ==================== */

[b-sw0b7xaprm] .rrp-form .ant-form-item {
    margin-bottom: 20px;
}

[b-sw0b7xaprm] .rrp-form .ant-form-item-label > label {
    color: #334155;
    font-weight: 500;
    font-size: 13px;
    height: auto;
    margin-bottom: 6px;
}

[b-sw0b7xaprm] .rrp-form .ant-form-item-label > label::before {
    color: #ef4444 !important;
}

[b-sw0b7xaprm] .rrp-form .ant-input,
[b-sw0b7xaprm] .rrp-form .ant-input-affix-wrapper {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    color: #1e293b !important;
    transition: all 0.2s ease;
    height: 48px !important;
    font-size: 15px !important;
    padding: 12px 16px !important;
}

[b-sw0b7xaprm] .rrp-form .ant-input:hover,
[b-sw0b7xaprm] .rrp-form .ant-input-affix-wrapper:hover {
    border-color: #94a3b8 !important;
}

[b-sw0b7xaprm] .rrp-form .ant-input:focus,
[b-sw0b7xaprm] .rrp-form .ant-input-affix-wrapper:focus,
[b-sw0b7xaprm] .rrp-form .ant-input-affix-wrapper-focused {
    border-color: #ea580c !important;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1) !important;
}

[b-sw0b7xaprm] .rrp-form .ant-input::placeholder {
    color: #94a3b8 !important;
}

[b-sw0b7xaprm] .form-submit {
    margin-top: 28px;
    margin-bottom: 0;
}

/* ==================== Buttons ==================== */

[b-sw0b7xaprm] .submit-btn.ant-btn-primary {
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-sw0b7xaprm] .submit-btn.ant-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
    transform: translateY(-1px);
}

[b-sw0b7xaprm] .submit-btn.ant-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

/* ==================== Status Icon (success) ==================== */

.status-icon[b-sw0b7xaprm] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce-b-sw0b7xaprm 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconBounce-b-sw0b7xaprm {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.status-icon.success[b-sw0b7xaprm] {
    background: rgba(16, 185, 129, 0.1);
}

.status-icon.success[b-sw0b7xaprm]  .anticon {
    font-size: 32px;
    color: #10b981;
}

/* ==================== Alerts ==================== */

.alert-container[b-sw0b7xaprm] {
    margin-top: 20px;
}

[b-sw0b7xaprm] .alert-container .ant-alert {
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

[b-sw0b7xaprm] .alert-container .ant-alert-message {
    color: #b91c1c;
}

/* ==================== Back Link ==================== */

.back-link[b-sw0b7xaprm] {
    text-align: center;
    margin-top: 20px;
}

.back-link a[b-sw0b7xaprm] {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.back-link a:hover[b-sw0b7xaprm] {
    color: #ea580c;
}

/* ==================== Footer ==================== */

.rrp-footer[b-sw0b7xaprm] {
    text-align: center;
    margin-top: 32px;
}

.rrp-footer p[b-sw0b7xaprm] {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* ==================== Animations ==================== */

.animate-fade-in[b-sw0b7xaprm] {
    animation: fadeSlideIn-b-sw0b7xaprm 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeSlideIn-b-sw0b7xaprm {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-shake[b-sw0b7xaprm] {
    animation: shake-b-sw0b7xaprm 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake-b-sw0b7xaprm {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* ==================== Responsive Design ==================== */

@media (max-width: 480px) {
    .rrp-page[b-sw0b7xaprm] {
        padding: 16px;
    }

    .rrp-container[b-sw0b7xaprm] {
        max-width: 100%;
    }

    .logo-section[b-sw0b7xaprm] {
        margin-bottom: 24px;
    }

    .brand-logo[b-sw0b7xaprm] {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .brand-logo[b-sw0b7xaprm]  .logo-icon {
        font-size: 30px;
    }

    .brand-title[b-sw0b7xaprm] {
        font-size: 26px;
    }

    .rrp-card[b-sw0b7xaprm] {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .form-title[b-sw0b7xaprm] {
        font-size: 22px;
    }

    .status-icon[b-sw0b7xaprm] {
        width: 56px;
        height: 56px;
    }

    .status-icon.success[b-sw0b7xaprm]  .anticon {
        font-size: 28px;
    }

    .shape-1[b-sw0b7xaprm], .shape-2[b-sw0b7xaprm] {
        width: 300px;
        height: 300px;
    }

    .shape-3[b-sw0b7xaprm], .shape-4[b-sw0b7xaprm], .shape-5[b-sw0b7xaprm] {
        width: 200px;
        height: 200px;
    }
}

/* ==================== Reduced Motion ==================== */

@media (prefers-reduced-motion: reduce) {
    .shape[b-sw0b7xaprm],
    .animate-fade-in[b-sw0b7xaprm],
    .animate-shake[b-sw0b7xaprm],
    .status-icon[b-sw0b7xaprm] {
        animation: none;
    }

    [b-sw0b7xaprm] .submit-btn.ant-btn-primary:hover:not(:disabled) {
        transform: none;
    }
}
/* _content/esmartx.web/Components/Pages/SiteSwitch.razor.rz.scp.css */
.site-switch[b-8ek3lnajqq] {
    align-items: center;
    color: var(--text-primary, #111827);
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    min-height: 240px;
    text-align: center;
}

.site-switch h2[b-8ek3lnajqq] {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 8px 0 0;
}

.site-switch p[b-8ek3lnajqq] {
    color: var(--text-secondary, #6b7280);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}
/* _content/esmartx.web/Components/Shared/AccessDeniedState.razor.rz.scp.css */
.access-denied-state[b-qva3qs452a] {
    display: flex;
    flex-direction: column;
    max-width: 520px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 48px);
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 16px;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 24px rgba(15, 23, 42, 0.06);
}

.access-denied-state__header[b-qva3qs452a] {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.access-denied-state__signal[b-qva3qs452a] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 20px;
}

.access-denied-state__eyebrow[b-qva3qs452a] {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #dc2626;
}

.access-denied-state__body[b-qva3qs452a] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.access-denied-state__title[b-qva3qs452a] {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.access-denied-state__description[b-qva3qs452a] {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
}

.access-denied-state__help[b-qva3qs452a] {
    margin: 0;
    padding-top: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6b7280;
}

.access-denied-state__actions[b-qva3qs452a] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #f1f3f5;
}

@media (max-width: 480px) {
    .access-denied-state[b-qva3qs452a] {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .access-denied-state__body[b-qva3qs452a] {
        margin-bottom: 24px;
    }

    .access-denied-state__actions[b-qva3qs452a] {
        flex-wrap: wrap;
    }
}
