/* _content/Aura.Web/Components/Pages/Auth/AuthLayout.razor.rz.scp.css */
.auth-page[b-dp0an6ldla] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    background-color: var(--mud-palette-background, #f1f5f9);
    position: relative;
    overflow: hidden;
}

/* Animated gradient orbs */
.auth-orb[b-dp0an6ldla] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float-b-dp0an6ldla 20s ease-in-out infinite;
}

.auth-orb-1[b-dp0an6ldla] {
    width: 600px;
    height: 600px;
    top: -15%;
    right: -10%;
    background: #4f46e5;
    background: var(--mud-palette-primary, #4f46e5);
    opacity: 0.28;
    animation-delay: 0s;
}

.auth-orb-2[b-dp0an6ldla] {
    width: 500px;
    height: 500px;
    bottom: -10%;
    left: -8%;
    background: #8b5cf6;
    background: var(--mud-palette-tertiary, #8b5cf6);
    opacity: 0.22;
    animation-delay: -7s;
    animation-duration: 25s;
}

.auth-orb-3[b-dp0an6ldla] {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 55%;
    background: #0ea5e9;
    background: var(--mud-palette-secondary, #0ea5e9);
    opacity: 0.16;
    animation-delay: -14s;
    animation-duration: 22s;
}

@keyframes float-b-dp0an6ldla {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Brand logo */
.auth-logo[b-dp0an6ldla] {
    height: 44px;
    width: auto;
    display: block;
}

/* MudText renders child elements — need ::deep for Class-based selectors */
[b-dp0an6ldla] .auth-subtitle {
    color: #64748b;
    color: var(--mud-palette-text-secondary, #64748b);
    margin-top: -4px;
}

/* Frosted glass card */
.auth-card[b-dp0an6ldla] {
    background: rgba(255, 255, 255, 0.8);
    background: color-mix(in srgb, var(--mud-palette-surface, #ffffff) 80%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 213, 225, 0.5);
    border-color: color-mix(in srgb, var(--mud-palette-lines-default, #cbd5e1) 50%, transparent);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
/* _content/Aura.Web/Components/Pages/Auth/Mfa.razor.rz.scp.css */
.mfa-option-btn[b-8l353derlr] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background-color: transparent;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 10px;
    color: var(--mud-palette-text-primary);
    text-decoration: none;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.mfa-option-btn:hover[b-8l353derlr] {
    background-color: var(--mud-palette-action-default-hover);
    border-color: var(--mud-palette-primary);
}

.mfa-option-btn:active[b-8l353derlr] {
    transform: scale(0.995);
}

.mfa-option-title[b-8l353derlr] {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.mfa-option-sub[b-8l353derlr] {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--mud-palette-text-secondary);
    margin-top: 2px;
}

.mfa-signout-link[b-8l353derlr] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    text-decoration: none;
}

.mfa-signout-link:hover[b-8l353derlr] {
    text-decoration: underline;
}
/* _content/Aura.Web/Components/Pages/Auth/MfaSetup.razor.rz.scp.css */
/* Links inside the auth-page disclosures inherit the surrounding text color
   instead of picking up the browser default. Hover state shows an underline
   in the same color so the affordance is visible without a color shift. */
a.auth-inline-link[b-hb7ukllylq] {
    color: inherit;
    text-decoration: none;
}

a.auth-inline-link:hover[b-hb7ukllylq],
a.auth-inline-link:focus-visible[b-hb7ukllylq] {
    text-decoration: underline;
}

/* Segmented control for the TOTP/Email mode selector. MudTabs can't be used
   here — this is a static-SSR page (no interactive handlers), so each option
   is an anchor that round-trips the ?mode query string. The pill-and-track
   shape is the iOS/Stripe segmented-control pattern: a recessed track with a
   raised, equal-width "thumb" marking the active option. */
.mfa-mode-tabs[b-hb7ukllylq] {
    display: flex;
    background-color: var(--mud-palette-action-default-hover);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
    gap: 4px;
}

.mfa-mode-tab[b-hb7ukllylq] {
    flex: 1 1 0;
    text-align: center;
    padding: 9px 16px;
    border-radius: 7px;
    color: var(--mud-palette-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
}

.mfa-mode-tab:hover[b-hb7ukllylq] {
    color: var(--mud-palette-text-primary);
}

.mfa-mode-tab-active[b-hb7ukllylq],
.mfa-mode-tab-active:hover[b-hb7ukllylq] {
    background-color: var(--mud-palette-surface);
    color: var(--mud-palette-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    cursor: default;
    font-weight: 600;
}
/* _content/Aura.Web/Components/Pages/Auth/ResetPassword.razor.rz.scp.css */
.req-item[b-gvxexg4ujf] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    transition: all 0.2s ease;
}

.req-icon[b-gvxexg4ujf] {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    opacity: 0.25;
    transition: all 0.25s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-icon svg[b-gvxexg4ujf] {
    width: 12px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.req-text[b-gvxexg4ujf] {
    font-size: 0.8125rem;
    opacity: 0.45;
    transition: all 0.25s ease;
}

.req-item.met .req-icon[b-gvxexg4ujf] {
    border-color: var(--mud-palette-success);
    background: var(--mud-palette-success);
    opacity: 1;
}

.req-item.met .req-icon svg[b-gvxexg4ujf] {
    opacity: 1;
}

.req-item.met .req-text[b-gvxexg4ujf] {
    color: var(--mud-palette-success);
    opacity: 1;
}
