@import '_content/Blazor.SignaturePad/Blazor.SignaturePad.bundle.scp.css';
@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bwfmfibeoq.bundle.scp.css';
@import 'Client.bundle.scp.css';

/* _content/LogisticsPro.WebUI.Server/Components/Account/Pages/Login.razor.rz.scp.css */
/* Background Pattern */
.background-pattern[b-cznvilahd3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Container */
.flux-login-container[b-cznvilahd3] {
    height: 100%;
    display: flex;
    align-items: flex-start; /* Change from center to flex-start */
    justify-content: center;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    min-height: 0; /* Allows flex shrinking */
    padding-top: 17.2vh; /* Golden ratio positioning from top */
}

/* Removed duplicate background - using .background-pattern element instead */

/* Login Card */
.flux-login-card[b-cznvilahd3] {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    margin: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fluxFadeInUp-b-cznvilahd3 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    max-height: calc(100% - 2rem); /* Ensure card doesn't exceed container */
    overflow-y: auto; /* Allow scrolling within card if needed */
}

.flux-login-card:hover[b-cznvilahd3] {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Typography */
.flux-login-header[b-cznvilahd3] {
    text-align: center;
    margin-bottom: var(--flux-space-6);
}

/* Logo Container */
.flux-logo-container[b-cznvilahd3] {
    margin-bottom: var(--flux-space-5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.flux-logo[b-cznvilahd3] {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.15));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fluxLogoFloat-b-cznvilahd3 3s ease-in-out infinite;
}

.flux-logo:hover[b-cznvilahd3] {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(59, 130, 246, 0.25));
}

.flux-title[b-cznvilahd3] {
    font-family: var(--body-font);
    font-size: var(--flux-text-2xl);
    font-weight: 700;
    color: var(--flux-gray-900);
    margin: 0 0 8px 0;
}

.flux-subtitle[b-cznvilahd3] {
    font-size: var(--flux-text-base);
    color: var(--flux-gray-600);
    margin: 0 0 0 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Form */
.flux-form[b-cznvilahd3] {
    width: 100%;
}

/* Input Groups with Floating Labels */
.flux-input-group[b-cznvilahd3] {
    position: relative;
    margin-bottom: 24px;
}

.flux-input[b-cznvilahd3] {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 14px;
    padding: 18px 48px 8px 16px;
    font-size: var(--flux-text-base);
    color: var(--flux-gray-900);
    transition: all 0.2s ease;
    outline: none;
    text-align: right;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    direction: rtl;
}

.flux-input:focus[b-cznvilahd3] {
    border-color: var(--flux-primary-solid);
    box-shadow: 0 0 0 3px var(--flux-primary-soft);
    background: rgba(255, 255, 255, 0.95);
}

.flux-input.error[b-cznvilahd3] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.flux-input.error:focus[b-cznvilahd3] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.flux-label[b-cznvilahd3] {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--flux-gray-600);
    font-size: var(--flux-text-base);
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    z-index: 2;
}

.flux-input:focus + .flux-label[b-cznvilahd3],
.flux-input:not(:placeholder-shown) + .flux-label[b-cznvilahd3] {
    top: 2px;
    transform: translateY(0) scale(0.75);
    color: var(--flux-primary-solid);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 4px;
    right: 40px;
}

.flux-input-icon[b-cznvilahd3] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--flux-gray-600);
    transition: color 0.2s ease;
    font-size: 20px;
    z-index: 1;
}

.flux-input:focus ~ .flux-input-icon[b-cznvilahd3] {
    color: var(--flux-primary-solid);
}

/* Primary Button */
.flux-btn-primary[b-cznvilahd3] {
    width: 100%;
    background: var(--flux-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: var(--flux-text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: var(--flux-space-4);
}

.flux-btn-primary:hover:not(:disabled)[b-cznvilahd3] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.flux-btn-primary:active:not(:disabled)[b-cznvilahd3] {
    transform: translateY(1px) scale(0.98);
}

.flux-btn-primary:disabled[b-cznvilahd3],
.flux-btn-primary.loading[b-cznvilahd3] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* OTP Container */
.flux-otp-container[b-cznvilahd3] {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: var(--flux-space-5) 0;
    direction: ltr;
}

.flux-otp-input[b-cznvilahd3] {
    width: 48px;
    height: 48px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--flux-gray-900);
    transition: all 0.2s ease;
    outline: none;
}

.flux-otp-input:focus[b-cznvilahd3] {
    border-color: var(--flux-primary-solid);
    box-shadow: 0 0 0 3px var(--flux-primary-soft);
    background: rgba(255, 255, 255, 0.95);
}

/* Regular Number Input Field */
.flux-number-input[b-cznvilahd3] {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 14px;
    padding: 16px;
    font-size: var(--flux-text-base);
    color: var(--flux-gray-900);
    transition: all 0.2s ease;
    outline: none;
    text-align: right;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    direction: rtl;
}

.flux-number-input:focus[b-cznvilahd3] {
    border-color: var(--flux-primary-solid);
    box-shadow: 0 0 0 3px var(--flux-primary-soft);
    background: rgba(255, 255, 255, 0.95);
}

.flux-number-input.error[b-cznvilahd3] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.flux-number-input.error:focus[b-cznvilahd3] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

/* Error Messages */
.flux-error-message[b-cznvilahd3] {
    color: #ef4444;
    font-size: 0.875rem;
    text-align: center;
    margin: var(--flux-space-4) 0;
    padding: 12px 16px;
    background: rgba(254, 242, 242, 0.9);
    border: 1px solid rgba(254, 202, 202, 0.5);
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.flux-error-message.show[b-cznvilahd3] {
    opacity: 1;
    transform: translateY(0);
}

/* Form Footer & Links */
.flux-form-footer[b-cznvilahd3] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--flux-space-3);
    margin-top: var(--flux-space-5);
    font-size: 0.875rem;
    color: var(--flux-gray-600);
}

.flux-link[b-cznvilahd3] {
    color: var(--flux-primary-solid);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.flux-link:hover[b-cznvilahd3] {
    text-decoration: underline;
    opacity: 0.8;
}

.flux-back-button[b-cznvilahd3] {
    background: none;
    border: none;
    color: var(--flux-gray-600);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: var(--flux-space-4) auto 0;
}

.flux-back-button:hover[b-cznvilahd3] {
    background: rgba(243, 244, 246, 0.8);
    color: var(--flux-gray-900);
}

/* Loading Spinner */
.flux-loading-spinner[b-cznvilahd3] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: fluxSpin-b-cznvilahd3 1s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

/* Animations */
@keyframes fluxFadeInUp-b-cznvilahd3 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fluxSpin-b-cznvilahd3 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fluxLogoFloat-b-cznvilahd3 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* RTL Adjustments */
[dir="rtl"] .flux-input[b-cznvilahd3] {
    padding: 18px 48px 8px 16px;
    text-align: right;
}

[dir="rtl"] .flux-label[b-cznvilahd3] {
    right: 48px;
    left: auto;
}

[dir="rtl"] .flux-input:focus + .flux-label[b-cznvilahd3],
[dir="rtl"] .flux-input:not(:placeholder-shown) + .flux-label[b-cznvilahd3] {
    right: 44px;
    left: auto;
}

[dir="rtl"] .flux-input-icon[b-cznvilahd3] {
    right: 16px;
    left: auto;
}

[dir="rtl"] .flux-loading-spinner[b-cznvilahd3] {
    margin-right: 8px;
    margin-left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flux-login-container[b-cznvilahd3] {
        padding-top: 14vh; /* Slightly lower on tablets for better visibility */
    }
    
    .flux-login-card[b-cznvilahd3] {
        padding: 32px 24px;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .flux-login-container[b-cznvilahd3] {
        padding-top: 13vh; /* Lower on mobile for better thumb reach */
    }
    
    .flux-login-card[b-cznvilahd3] {
        padding: 24px 20px;
        margin: 0.75rem;
        max-width: none;
        width: calc(100% - 1.5rem);
    }

    .flux-logo[b-cznvilahd3] {
        width: 64px;
        height: 64px;
    }

    .flux-otp-container[b-cznvilahd3] {
        gap: 8px;
    }

    .flux-otp-input[b-cznvilahd3] {
        width: 42px;
        height: 42px;
        font-size: 1.125rem;
    }
}

/* Focus Management */
.flux-input:focus[b-cznvilahd3],
.flux-otp-input:focus[b-cznvilahd3],
.flux-btn-primary:focus[b-cznvilahd3],
.flux-link:focus[b-cznvilahd3],
.flux-back-button:focus[b-cznvilahd3] {
    outline: 2px solid var(--flux-primary-solid);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .flux-login-card[b-cznvilahd3] {
        border: 2px solid var(--flux-gray-900);
        background: white;
    }

    .flux-input[b-cznvilahd3],
    .flux-otp-input[b-cznvilahd3] {
        border: 2px solid var(--flux-gray-900);
        background: white;
    }
} 
/* _content/LogisticsPro.WebUI.Server/Components/Account/Pages/LoginWithEmail.razor.rz.scp.css */
/* Background Pattern */
.background-pattern[b-i00jqva66l] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Container */
.flux-admin-login-container[b-i00jqva66l] {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    min-height: 0;
    padding-top: 17.2vh; /* Golden ratio positioning from top */
}

/* Admin Login Card */
.flux-admin-login-card[b-i00jqva66l] {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    margin: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fluxFadeInUp-b-i00jqva66l 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    max-height: calc(100% - 2rem);
    overflow-y: auto;
}

.flux-admin-login-card:hover[b-i00jqva66l] {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Typography */
.flux-login-header[b-i00jqva66l] {
    text-align: center;
    margin-bottom: var(--flux-space-6, 2.625rem);
}

.flux-title[b-i00jqva66l] {
    font-family: var(--body-font);
    font-size: var(--flux-text-2xl, clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem));
    font-weight: 700;
    color: var(--flux-gray-900, #1c1917);
    margin: 0 0 8px 0;
}

.flux-subtitle[b-i00jqva66l] {
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    color: var(--flux-gray-600, #57534e);
    margin: 0 0 0 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Form */
.flux-form[b-i00jqva66l] {
    width: 100%;
}

/* Input Groups with Floating Labels */
.flux-input-group[b-i00jqva66l] {
    position: relative;
    margin-bottom: 24px;
}

.flux-input[b-i00jqva66l] {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 14px;
    padding: 18px 48px 8px 16px;
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    color: var(--flux-gray-900, #1c1917);
    transition: all 0.2s ease;
    outline: none;
    text-align: right;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    direction: rtl;
}

.flux-input:focus[b-i00jqva66l] {
    border-color: var(--flux-primary-solid, #3b82f6);
    box-shadow: 0 0 0 3px var(--flux-primary-soft, rgba(59, 130, 246, 0.12));
    background: rgba(255, 255, 255, 0.95);
}

.flux-input.error[b-i00jqva66l] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.flux-input.error:focus[b-i00jqva66l] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.flux-label[b-i00jqva66l] {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--flux-gray-600, #57534e);
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    z-index: 2;
}

.flux-input:focus + .flux-label[b-i00jqva66l],
.flux-input:not(:placeholder-shown) + .flux-label[b-i00jqva66l] {
    top: 2px;
    transform: translateY(0) scale(0.75);
    color: var(--flux-primary-solid, #3b82f6);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 4px;
    right: 40px;
}

.flux-input-icon[b-i00jqva66l] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--flux-gray-600, #57534e);
    transition: color 0.2s ease;
    font-size: 20px;
    z-index: 1;
}

.flux-input:focus ~ .flux-input-icon[b-i00jqva66l] {
    color: var(--flux-primary-solid, #3b82f6);
}

/* Checkbox Group */
.flux-checkbox-group[b-i00jqva66l] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    direction: rtl;
}

.flux-checkbox[b-i00jqva66l] {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 4px;
    transition: all 0.2s ease;
    outline: none;
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.flux-checkbox:checked[b-i00jqva66l] {
    background: var(--flux-primary-solid, #3b82f6);
    border-color: var(--flux-primary-solid, #3b82f6);
}

.flux-checkbox:checked[b-i00jqva66l]::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.flux-checkbox:focus[b-i00jqva66l] {
    box-shadow: 0 0 0 3px var(--flux-primary-soft, rgba(59, 130, 246, 0.12));
}

.flux-checkbox-label[b-i00jqva66l] {
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    color: var(--flux-gray-700, #374151);
    cursor: pointer;
    user-select: none;
}

/* Primary Button */
.flux-btn-primary[b-i00jqva66l] {
    width: 100%;
    background: var(--flux-primary, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: var(--flux-space-4, 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    direction: rtl;
}

.flux-btn-primary:hover:not(:disabled)[b-i00jqva66l] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.flux-btn-primary:active:not(:disabled)[b-i00jqva66l] {
    transform: translateY(1px) scale(0.98);
}

.flux-btn-primary:disabled[b-i00jqva66l],
.flux-btn-primary.loading[b-i00jqva66l] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Error Messages */
.flux-error-message[b-i00jqva66l] {
    color: #ef4444;
    font-size: 0.875rem;
    text-align: center;
    margin: var(--flux-space-4, 1rem) 0;
    padding: 12px 16px;
    background: rgba(254, 242, 242, 0.9);
    border: 1px solid rgba(254, 202, 202, 0.5);
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    direction: rtl;
}

.flux-error-message.show[b-i00jqva66l] {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Spinner */
.flux-loading-spinner[b-i00jqva66l] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: fluxSpin-b-i00jqva66l 1s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

/* Animations */
@keyframes fluxFadeInUp-b-i00jqva66l {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fluxSpin-b-i00jqva66l {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* RTL Adjustments */
[dir="rtl"] .flux-input[b-i00jqva66l] {
    padding: 18px 48px 8px 16px;
    text-align: right;
}

[dir="rtl"] .flux-label[b-i00jqva66l] {
    right: 48px;
    left: auto;
}

[dir="rtl"] .flux-input:focus + .flux-label[b-i00jqva66l],
[dir="rtl"] .flux-input:not(:placeholder-shown) + .flux-label[b-i00jqva66l] {
    right: 44px;
    left: auto;
}

[dir="rtl"] .flux-input-icon[b-i00jqva66l] {
    right: 16px;
    left: auto;
}

[dir="rtl"] .flux-loading-spinner[b-i00jqva66l] {
    margin-right: 8px;
    margin-left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flux-admin-login-container[b-i00jqva66l] {
        padding-top: 14vh;
    }
    
    .flux-admin-login-card[b-i00jqva66l] {
        padding: 32px 24px;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .flux-admin-login-container[b-i00jqva66l] {
        padding-top: 13vh;
    }
    
    .flux-admin-login-card[b-i00jqva66l] {
        padding: 24px 20px;
        margin: 0.75rem;
        max-width: none;
        width: calc(100% - 1.5rem);
    }
}

/* Focus Management */
.flux-input:focus[b-i00jqva66l],
.flux-checkbox:focus[b-i00jqva66l],
.flux-btn-primary:focus[b-i00jqva66l] {
    outline: 2px solid var(--flux-primary-solid, #3b82f6);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .flux-admin-login-card[b-i00jqva66l] {
        border: 2px solid var(--flux-gray-900, #1c1917);
        background: white;
    }

    .flux-input[b-i00jqva66l],
    .flux-checkbox[b-i00jqva66l] {
        border: 2px solid var(--flux-gray-900, #1c1917);
        background: white;
    }
}

/* Admin-specific styling enhancements */
.flux-admin-login-card[b-i00jqva66l]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--flux-primary-solid, #3b82f6), #8b5cf6);
    border-radius: 0 20px 20px 0;
}

/* Enhanced glassmorphism for admin login */
.flux-admin-login-card[b-i00jqva66l] {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/AdminLayout.razor.rz.scp.css */
.layout[b-fncuqkuuf4] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}

.main[b-fncuqkuuf4] {
    direction: rtl;
    height: calc(100vh - 60px);
    gap: 0;
}

.content[b-fncuqkuuf4] {
    padding: 1.5rem;
    direction: rtl;
    flex: 1;
    overflow-y: auto;
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/DriverLayout.razor.rz.scp.css */
.layout[b-619l3r4kq3] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/MainLayout.razor.rz.scp.css */
.layout[b-l883vpeidv] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/NavMenu.razor.rz.scp.css */
[b-2x6e6o464d] .fluent-nav-icon {
    /*padding-top: 5px;*/
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/TransportCompanyLayout.razor.rz.scp.css */
.layout[b-8rwfqxlyoq] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}

.main[b-8rwfqxlyoq] {
    direction: rtl;
    height: calc(100vh - 60px);
    gap: 0;
}

.content[b-8rwfqxlyoq] {
    padding: 1.5rem;
    direction: rtl;
    flex: 1;
    overflow-y: auto;
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/UserLayout.razor.rz.scp.css */
.layout[b-pzum2g8trc] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}
/* _content/LogisticsPro.WebUI.Server/Components/Pages/Home.razor.rz.scp.css */
/* Reset and Base Styles */
*[b-t38w7wx811] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-t38w7wx811] {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    direction: rtl;
    background: #E8E8E8;
    overflow-x: hidden;
}

.container[b-t38w7wx811] {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

/* Hero Section with Integrated Header */
.hero-section[b-t38w7wx811] {
    padding: 0;
    background: #E8E8E8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Integrated Header */
.integrated-header[b-t38w7wx811] {
    display: flex;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 100;
    width: 100%;
    direction: ltr;
}

/* Login section - Left side */
.login-section[b-t38w7wx811] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 1;
}

/* Navigation - Centered */
.main-nav[b-t38w7wx811] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    flex: 0 0 auto;
    order: 2;
}

/* Logo Section - Right side */
.logo-section[b-t38w7wx811] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    order: 3;
}

.brand-logo[b-t38w7wx811] {
    height: 40px;
    width: auto;
}

.brand-name[b-t38w7wx811] {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    letter-spacing: -0.5px;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000000;
}

.brand-name .bold[b-t38w7wx811] {
    font-weight: 700;
}

/* Main menu navigation links */
.menu-link[b-t38w7wx811] {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 4px;
}

.menu-link[b-t38w7wx811]::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.menu-link:hover[b-t38w7wx811]::after {
    width: 100%;
}

/* Login button */
.nav-link.login-btn[b-t38w7wx811] {
    background: white;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-link.login-btn svg[b-t38w7wx811] {
    width: 18px;
    height: 18px;
}

.nav-link.login-btn:hover[b-t38w7wx811] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}

/* Hero Content */
.hero-content[b-t38w7wx811] {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    min-height: calc(100vh - 100px);
    flex: 1;
    padding-top: 60px;
}

/* Left Side - Headline */
.hero-left[b-t38w7wx811] {
    position: relative;
    z-index: 20;
    padding-left: 40px;
}

.hero-title[b-t38w7wx811] {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 0;
    letter-spacing: -2px;
    text-align: right;
}

/* Truck Background - Full section from top to bottom */
.truck-background[b-t38w7wx811] {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.trucks-image[b-t38w7wx811] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
}

/* Right Side - Info and Card */
.hero-right[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 20;
}

/* Contact Info - Outside card */
.contact-info[b-t38w7wx811] {
    max-width: 380px;
}

.card-description[b-t38w7wx811] {
    font-size: 13px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 400;
    text-align: right;
}

/* Floating Cards Grid */
.floating-cards-grid[b-t38w7wx811] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 420px;
}

.floating-card[b-t38w7wx811] {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-card:hover[b-t38w7wx811] {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.card-header[b-t38w7wx811] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.card-header.driver[b-t38w7wx811] {
    margin-bottom: 0;
}

.card-icon-wrapper[b-t38w7wx811] {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon-wrapper.blue[b-t38w7wx811] {
    background: rgba(59, 130, 246, 0.2);
}

.card-icon-wrapper.green[b-t38w7wx811] {
    background: rgba(16, 185, 129, 0.2);
}

.card-icon-wrapper.orange[b-t38w7wx811] {
    background: rgba(245, 158, 11, 0.2);
}

.card-icon-wrapper.purple[b-t38w7wx811] {
    background: rgba(124, 58, 237, 0.2);
}

.card-icon-wrapper svg[b-t38w7wx811] {
    width: 18px;
    height: 18px;
}

.card-icon-wrapper.blue svg[b-t38w7wx811] {
    color: #60A5FA;
}

.card-icon-wrapper.green svg[b-t38w7wx811] {
    color: #34D399;
}

.card-icon-wrapper.orange svg[b-t38w7wx811] {
    color: #FBBF24;
}

.card-icon-wrapper.purple svg[b-t38w7wx811] {
    color: #A78BFA;
}

.card-text[b-t38w7wx811] {
    flex: 1;
    text-align: right;
}

.card-title[b-t38w7wx811] {
    font-size: 12px;
    font-weight: 500;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.card-subtitle[b-t38w7wx811] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 2px 0 0 0;
}

.card-subtitle.orange[b-t38w7wx811] {
    color: #FBBF24;
}

/* Map Visual */
.map-visual[b-t38w7wx811] {
    width: 100%;
    height: 64px;
    background: url('https://lh3.googleusercontent.com/aida-public/AB6AXuDTc5aYFR3GaRfYGistokUSPkyKrbIuwpUN2KBWtrCU_5A0U8WmpqQxs5xfnQPDNYl1qz7A4X94DPHLeIAV5iN-EE8QJbeK1HbQAalJc6VuTBx4ZvRPJ-aRtbGhHEDTPtjKOzssYIUq2DvW815NdUvwx7AWMOtTXEdf2pTQ71F7dOtIVTxLC5iBzDXm01bP3VVAbGatIgRnEgLWgGeAsPKGEgDAcKqwcXdmpKKUXd67KDvpQV7xf4UvZog8E9TT1vN8fWfIyrnIfS5k') center/cover;
    border-radius: 8px;
}

/* Chart Bars */
.chart-bars[b-t38w7wx811] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4px;
    height: 40px;
    margin-top: 4px;
}

.bar[b-t38w7wx811] {
    flex: 1;
    background: rgba(16, 185, 129, 0.4);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.bar:nth-child(2)[b-t38w7wx811] {
    background: rgba(16, 185, 129, 0.6);
}

.bar:nth-child(4)[b-t38w7wx811] {
    background: rgba(16, 185, 129, 1);
}

/* Progress Container */
.progress-container[b-t38w7wx811] {
    margin-top: 8px;
}

.progress-bar[b-t38w7wx811] {
    width: 100%;
    height: 6px;
    background: rgba(100, 100, 100, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill[b-t38w7wx811] {
    width: 75%;
    height: 100%;
    background: #FBBF24;
    border-radius: 3px;
    animation: progressAnim 2s ease-in-out infinite;
}

@@keyframes progressAnim {
    0%[b-t38w7wx811], 100%[b-t38w7wx811] { width: 75%; }
    50%[b-t38w7wx811] { width: 85%; }
}

/* Driver Info */
.driver-avatar[b-t38w7wx811] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rating-stars[b-t38w7wx811] {
    display: flex;
    gap: 2px;
    font-size: 12px;
    margin-top: 2px;
}

.rating-stars span[b-t38w7wx811] {
    color: #FBBF24;
}

.rating-stars span.half[b-t38w7wx811] {
    opacity: 0.5;
}

.card-actions[b-t38w7wx811] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-contact[b-t38w7wx811] {
    background: #1a1a1a;
    color: white;
    padding: 12px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-contact:hover[b-t38w7wx811] {
    background: #333;
    transform: translateY(-1px);
}

.social-icons[b-t38w7wx811] {
    display: flex;
    gap: 10px;
}

.social-icon[b-t38w7wx811] {
    width: 44px;
    height: 44px;
    border: 1.5px solid #e0e0e0;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover[b-t38w7wx811] {
    border-color: #1a1a1a;
    color: #1a1a1a;
    transform: translateY(-1px);
}

.social-icon svg[b-t38w7wx811] {
    width: 18px;
    height: 18px;
}

/* Location Form */
.location-form[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group[b-t38w7wx811] {
    position: relative;
}

.input-icon[b-t38w7wx811] {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    width: 20px;
    height: 20px;
    z-index: 10;
}

.input-icon svg[b-t38w7wx811] {
    width: 100%;
    height: 100%;
}

.location-input[b-t38w7wx811] {
    width: 100%;
    padding: 16px 48px 16px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 24px;
    font-size: 14px;
    font-family: inherit;
    direction: rtl;
    transition: all 0.2s ease;
    background: white;
}

.location-input:focus[b-t38w7wx811] {
    outline: none;
    border-color: #1a1a1a;
    background: white;
}

.location-input[b-t38w7wx811]::placeholder {
    color: #999;
}

.btn-get-started[b-t38w7wx811] {
    background: linear-gradient(135deg, #8B7FFF 0%, #9F95FF 100%);
    color: white;
    padding: 16px 28px;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    width: 100%;
    letter-spacing: 0.5px;
}

.btn-get-started:hover[b-t38w7wx811] {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(139, 127, 255, 0.3);
}

.arrow-icon[b-t38w7wx811] {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
    transform: rotate(180deg);
}

.btn-get-started:hover .arrow-icon[b-t38w7wx811] {
    transform: rotate(180deg) translateX(3px);
}

/* Responsive Design */
@@media (max-width: 1400px) {
    .container[b-t38w7wx811] {
        padding: 0 40px;
    }

    .hero-title[b-t38w7wx811] {
        font-size: 56px;
    }

    .truck-background[b-t38w7wx811] {
        width: 100%;
        max-width: 1200px;
    }
}

@@media (max-width: 1200px) {
    .hero-title[b-t38w7wx811] {
        font-size: 52px;
    }

    .main-nav[b-t38w7wx811] {
        gap: 24px;
    }

    .nav-link[b-t38w7wx811] {
        font-size: 15px;
    }

    .truck-background[b-t38w7wx811] {
        width: 100%;
        max-width: 1000px;
    }
}

@@media (max-width: 968px) {
    .container[b-t38w7wx811] {
        padding: 0 24px;
    }

    .integrated-header[b-t38w7wx811] {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .main-nav[b-t38w7wx811] {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hero-content[b-t38w7wx811] {
        grid-template-columns: 1fr;
        gap: 60px;
        min-height: auto;
    }

    .hero-title[b-t38w7wx811] {
        font-size: 48px;
        text-align: center;
        letter-spacing: -2px;
    }

    .hero-left[b-t38w7wx811] {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }

    .truck-background[b-t38w7wx811] {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 600px;
        margin: 40px auto;
    }

    .hero-right[b-t38w7wx811] {
        justify-content: center;
    }

    .hero-card[b-t38w7wx811] {
        max-width: 100%;
    }
}

@@media (max-width: 640px) {
    .brand-name[b-t38w7wx811] {
        font-size: 24px;
    }

    .main-nav[b-t38w7wx811] {
        gap: 12px;
    }

    .nav-link[b-t38w7wx811] {
        font-size: 14px;
        padding: 8px 14px;
    }

    .hero-content[b-t38w7wx811] {
        min-height: auto;
    }

    .hero-title[b-t38w7wx811] {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-card[b-t38w7wx811] {
        padding: 28px;
        border-radius: 24px;
    }

    .card-description[b-t38w7wx811] {
        font-size: 13px;
    }

    .card-actions[b-t38w7wx811] {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .btn-contact[b-t38w7wx811] {
        text-align: center;
        width: 100%;
    }

    .social-icons[b-t38w7wx811] {
        justify-content: center;
    }

    .btn-get-started[b-t38w7wx811] {
        font-size: 14px;
        padding: 14px 24px;
    }

    .truck-background[b-t38w7wx811] {
        max-width: 100%;
        margin: 30px auto;
    }
}

/* Test Section */
.test-section[b-t38w7wx811] {
    min-height: 100vh;
    background: #ffffff;
    padding: 80px 0;
}

.test-section h2[b-t38w7wx811] {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: right;
}

.test-section p[b-t38w7wx811] {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
    text-align: right;
}
/* _content/LogisticsPro.WebUI.Server/Components/Pages/User/Loads/New.razor.rz.scp.css */
