/* _content/Authify.UI/Components/ProfileLayout.razor.rz.scp.css */
/* Basis-Styling für Navigation Items */
.nav-item[b-fm9qqb2bjp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    cursor: pointer;

    /* Standard Textfarben (entspricht text-slate-600 / dark:text-slate-400) */
    color: #475569;
}

/* Dark Mode Support via Parent-Selector (Blazor Isolation Workaround) */
:global(.dark) .nav-item[b-fm9qqb2bjp] {
    color: #94a3b8; /* slate-400 / dark.muted */
}

.nav-item:hover[b-fm9qqb2bjp] {
    background-color: #f8fafc; /* slate-50 */
    color: #0f172a; /* slate-900 */
}

:global(.dark) .nav-item:hover[b-fm9qqb2bjp] {
    background-color: #1e293b; /* dark.card */
    color: #ffffff;
}

/* Active State (automatisch von Blazor NavLink gesetzt) */
.nav-item.active[b-fm9qqb2bjp] {
    /* Primary 50 background */
    background-color: #f0f9ff;
    /* Primary 600 text */
    color: #0284c7;
}

:global(.dark) .nav-item.active[b-fm9qqb2bjp] {
    /* Primary 900 background mit Opacity */
    background-color: rgba(12, 74, 110, 0.3);
    /* Primary 400 text */
    color: #38bdf8;
}

/* Animation Helper */
.animate-fade-in[b-fm9qqb2bjp] {
    animation: fadeIn-b-fm9qqb2bjp 0.4s ease-out;
}

@keyframes fadeIn-b-fm9qqb2bjp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* _content/Authify.UI/Pages/ConfirmEmail.razor.rz.scp.css */
/* 1. Global Reset & Base im Scope */
.confirm-container[b-1lpvjtsjqx], .confirm-container *[b-1lpvjtsjqx] {
    box-sizing: border-box;
}

/* 2. Container Background */
.confirm-container[b-1lpvjtsjqx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;

    background-color: var(--auth-bg);
    color: var(--auth-text);
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Wrapper für max-width */
.content-wrapper[b-1lpvjtsjqx] {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    margin: auto;
}

/* 3. Card Styling */
.auth-card[b-1lpvjtsjqx] {
    background-color: var(--auth-card-bg);
    border-radius: 1rem;
    padding: 2.5rem 2rem; /* Etwas mehr Padding vertikal */
    box-shadow: var(--auth-shadow);
    border: 1px solid var(--auth-border);
    transition: transform 0.2s ease;
    width: 100%;
    text-align: center; /* Alles zentriert für diese Info-Page */
}

/* 4. Content Styling */
.status-content[b-1lpvjtsjqx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn-b-1lpvjtsjqx 0.5s ease-out;
}

.status-content h1[b-1lpvjtsjqx] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--auth-text);
}

.status-content p[b-1lpvjtsjqx] {
    font-size: 0.95rem;
    color: var(--auth-text-muted);
    margin: 0;
    line-height: 1.6;
}

.email-highlight[b-1lpvjtsjqx] {
    color: var(--auth-text);
    font-weight: 600;
}

.sub-text[b-1lpvjtsjqx] {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
}

/* 5. Icons */
.icon-wrapper[b-1lpvjtsjqx] {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.icon-wrapper.info[b-1lpvjtsjqx] {
    background-color: var(--auth-bg); /* Nutzt den Hintergrundton, wirkt subtil */
    color: var(--auth-primary);
}

.icon-wrapper.loading[b-1lpvjtsjqx] {
    background-color: transparent;
    color: var(--auth-primary);
}

.icon-wrapper.success[b-1lpvjtsjqx] {
    background-color: rgba(16, 185, 129, 0.1); /* Emerald-500 mit Opacity */
    color: var(--auth-success, #10b981);
}

.icon-wrapper.error[b-1lpvjtsjqx] {
    background-color: rgba(239, 68, 68, 0.1); /* Red-500 mit Opacity */
    color: var(--auth-error);
}

/* 6. Buttons & Stack */
.auth-stack[b-1lpvjtsjqx] {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn[b-1lpvjtsjqx] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}

.btn-primary[b-1lpvjtsjqx] {
    background-color: var(--auth-primary);
    color: #ffffff;
}

.btn-primary:hover[b-1lpvjtsjqx] {
    background-color: var(--auth-primary-hover);
}

.btn-outline[b-1lpvjtsjqx] {
    background-color: transparent;
    border: 1px solid var(--auth-border);
    color: var(--auth-text);
}

.btn-outline:hover[b-1lpvjtsjqx] {
    background-color: var(--auth-bg);
    border-color: var(--auth-text-muted);
}

@keyframes fadeIn-b-1lpvjtsjqx {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .content-wrapper[b-1lpvjtsjqx] {
        padding: 0.5rem;
    }

    .auth-card[b-1lpvjtsjqx] {
        padding: 1.5rem;
    }
}
/* _content/Authify.UI/Pages/ForgotPassword.razor.rz.scp.css */
/* 1. Global Reset & Base im Scope */
.forgot-container[b-wh9hbvth50], .forgot-container *[b-wh9hbvth50] {
    box-sizing: border-box;
}

/* 2. Container Background */
.forgot-container[b-wh9hbvth50] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;

    background-color: var(--auth-bg);
    color: var(--auth-text);
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Wrapper für max-width */
.content-wrapper[b-wh9hbvth50] {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    margin: auto;
}

/* 3. Card Styling */
.auth-card[b-wh9hbvth50] {
    background-color: var(--auth-card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--auth-shadow);
    border: 1px solid var(--auth-border);
    transition: transform 0.2s ease;
    width: 100%;
}

.auth-card:hover[b-wh9hbvth50] {
    transform: translateY(-2px);
}

/* 4. Header */
.auth-header[b-wh9hbvth50] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1[b-wh9hbvth50] {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: var(--auth-text);
}

.auth-header p[b-wh9hbvth50] {
    font-size: 0.875rem;
    color: var(--auth-text-muted);
    margin: 0;
}

/* 5. Form Structure */
.auth-stack[b-wh9hbvth50] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group[b-wh9hbvth50] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label[b-wh9hbvth50] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--auth-text);
}

/* 6. Inputs */
.forgot-container[b-wh9hbvth50]  input:not([type="checkbox"]) {
    padding: 0.75rem 1rem;
    border: 1px solid var(--auth-border);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;

    background-color: var(--auth-input-bg);
    color: var(--auth-text);
    display: block;
}

.forgot-container[b-wh9hbvth50]  input:not([type="checkbox"]):focus {
    outline: none;
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2); /* Nutzt Primary Color Opacity */
}

/* 7. Validation Wrapper */
.validation-wrapper[b-wh9hbvth50] {
    min-height: 1rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.forgot-container[b-wh9hbvth50]  .validation-message {
    color: var(--auth-error);
    margin: 0;
}

/* 8. Buttons */
.btn[b-wh9hbvth50] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-primary[b-wh9hbvth50] {
    background-color: var(--auth-primary);
    color: #ffffff;
}

.btn-primary:hover[b-wh9hbvth50] {
    background-color: var(--auth-primary-hover);
}

.btn-primary:disabled[b-wh9hbvth50] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 9. Success Message Styles */
.success-message[b-wh9hbvth50] {
    text-align: center;
    padding: 1rem 0;
    animation: fadeIn-b-wh9hbvth50 0.5s ease-in-out;
}

.success-icon[b-wh9hbvth50] {
    font-size: 3rem;
    /* Nutzt Variable falls vorhanden, sonst fallback auf Tailwind emerald-500 equivalent */
    color: var(--auth-success, #10b981);
    margin-bottom: 1rem;
}

.success-message h2[b-wh9hbvth50] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--auth-text);
    margin-bottom: 0.5rem;
}

.success-message p[b-wh9hbvth50] {
    color: var(--auth-text-muted);
    font-size: 0.875rem;
}

@keyframes fadeIn-b-wh9hbvth50 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 10. Footer */
.auth-footer[b-wh9hbvth50] {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--auth-text-muted);
}

.auth-footer a[b-wh9hbvth50] {
    color: var(--auth-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-footer a:hover[b-wh9hbvth50] {
    text-decoration: underline;
    color: var(--auth-primary-hover);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .content-wrapper[b-wh9hbvth50] {
        padding: 0.5rem;
    }

    .auth-card[b-wh9hbvth50] {
        padding: 1.5rem;
    }

    .auth-header h1[b-wh9hbvth50] {
        font-size: 1.5rem;
    }
}
/* _content/Authify.UI/Pages/Login.razor.rz.scp.css */
/* 1. Global Reset & Base im Scope */
.login-container[b-7c2day5s6k], .login-container *[b-7c2day5s6k] {
    box-sizing: border-box;
}

/* 2. Container Background */
.login-container[b-7c2day5s6k] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;

    background-color: var(--auth-bg);
    color: var(--auth-text);
    line-height: 1.5;
}

/* Wrapper für max-width */
.content-wrapper[b-7c2day5s6k] {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
}

/* 3. Card Styling */
.auth-card[b-7c2day5s6k] {
    background-color: var(--auth-card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--auth-shadow);
    border: 1px solid var(--auth-border);
    transition: transform 0.2s ease;
    width: 100%;
}

.auth-card:hover[b-7c2day5s6k] {
    transform: translateY(-2px);
}

/* 4. Header */
.auth-header[b-7c2day5s6k] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1[b-7c2day5s6k] {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: var(--auth-text);
}

.auth-header p[b-7c2day5s6k] {
    font-size: 0.875rem;
    color: var(--auth-text-muted);
    margin: 0;
}

/* 5. Form Structure - JETZT AUF DAS DIV ANGEWENDET */
.auth-stack[b-7c2day5s6k] {
    display: flex;
    flex-direction: column;
    /* Dies erzwingt den Abstand überall gleichmäßig */
    gap: 1rem;
}

.form-group[b-7c2day5s6k] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label[b-7c2day5s6k] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--auth-text);
}

/* 6. Inputs */
.login-container[b-7c2day5s6k]  input:not([type="checkbox"]) {
    padding: 0.75rem 1rem;
    border: 1px solid var(--auth-border);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;

    background-color: var(--auth-input-bg);
    color: var(--auth-text);
}

.login-container[b-7c2day5s6k]  input:not([type="checkbox"]):focus {
    outline: none;
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Password Group */
.password-input[b-7c2day5s6k] {
    position: relative;
    width: 100%;
}

.password-input[b-7c2day5s6k]  input {
    padding-right: 2.5rem;
}

/* Toggle Password Button */
.toggle-password[b-7c2day5s6k] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);

    background: none;
    border: none;
    color: var(--auth-text-muted);
    cursor: pointer;
    padding: 0.25rem;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.toggle-password:hover[b-7c2day5s6k] {
    color: var(--auth-text);
}

/* 7. Validation Wrapper */
.validation-wrapper[b-7c2day5s6k] {
    min-height: 1rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.login-container[b-7c2day5s6k]  .validation-message {
    color: var(--auth-error);
    margin: 0;
}

/* 8. Form Options */
.form-options[b-7c2day5s6k] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    /* margin-bottom ist nicht mehr nötig wegen gap: 1rem im Container */
}

.remember-me[b-7c2day5s6k] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--auth-text-muted);
    cursor: pointer;
}

.remember-me[b-7c2day5s6k]  input[type="checkbox"] {
    cursor: pointer;
    width: 1rem;
    height: 1rem;
}

.forgot-password[b-7c2day5s6k] {
    color: var(--auth-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password:hover[b-7c2day5s6k] {
    text-decoration: underline;
    color: var(--auth-primary-hover);
}

/* 9. Buttons */
.btn[b-7c2day5s6k] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-primary[b-7c2day5s6k] {
    background-color: var(--auth-primary);
    color: #ffffff;
}

.btn-primary:hover[b-7c2day5s6k] {
    background-color: var(--auth-primary-hover);
}

.btn-primary:disabled[b-7c2day5s6k] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* OAuth Buttons */
.oauth-buttons[b-7c2day5s6k] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-oauth[b-7c2day5s6k] {
    background-color: var(--auth-card-bg);
    border: 1px solid var(--auth-border);
    color: var(--auth-text);
}

.btn-oauth:hover[b-7c2day5s6k] {
    background-color: var(--auth-bg);
}

/* 10. Divider */
.divider[b-7c2day5s6k] {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--auth-text-muted);
    font-size: 0.875rem;
}

.divider[b-7c2day5s6k]::before,
.divider[b-7c2day5s6k]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--auth-border);
}

.divider span[b-7c2day5s6k] {
    padding: 0 1rem;
}

/* 11. Footer */
.auth-footer[b-7c2day5s6k] {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--auth-text-muted);
}

.auth-footer a[b-7c2day5s6k] {
    color: var(--auth-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-footer a:hover[b-7c2day5s6k] {
    text-decoration: underline;
}

/* Alert Error Box */
.alert-danger[b-7c2day5s6k] {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--auth-error);
    border: 1px solid var(--auth-error);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

@media (max-width: 480px) {
    .content-wrapper[b-7c2day5s6k] {
        padding: 0.5rem;
    }
    .auth-card[b-7c2day5s6k] {
        padding: 1.5rem;
    }
    .auth-header h1[b-7c2day5s6k] {
        font-size: 1.5rem;
    }
}
/* _content/Authify.UI/Pages/Otp.razor.rz.scp.css */
/* 1. Global Reset & Base im Scope */
.otp-container[b-44kxgy1ed9], .otp-container *[b-44kxgy1ed9] {
    box-sizing: border-box;
}

/* 2. Container Background */
.otp-container[b-44kxgy1ed9] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;

    background-color: var(--auth-bg);
    color: var(--auth-text);
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Wrapper für max-width */
.content-wrapper[b-44kxgy1ed9] {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    margin: auto;
}

/* 3. Card Styling */
.auth-card[b-44kxgy1ed9] {
    background-color: var(--auth-card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--auth-shadow);
    border: 1px solid var(--auth-border);
    transition: transform 0.2s ease;
    width: 100%;
}

.auth-card:hover[b-44kxgy1ed9] {
    transform: translateY(-2px);
}

/* 4. Header */
.auth-header[b-44kxgy1ed9] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1[b-44kxgy1ed9] {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: var(--auth-text);
}

.auth-header p[b-44kxgy1ed9] {
    font-size: 0.875rem;
    color: var(--auth-text-muted);
    margin: 0;
}

/* 5. Form Structure */
.auth-stack[b-44kxgy1ed9] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Etwas mehr Abstand bei OTP sieht oft besser aus */
}

/* 6. OTP Inputs Styling */
.otp-inputs[b-44kxgy1ed9] {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

/* Styling der einzelnen Input-Boxen */
.otp-container[b-44kxgy1ed9]  input.otp-input {
    width: 3rem;
    height: 3.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;

    border: 1px solid var(--auth-border);
    border-radius: 0.5rem;
    background-color: var(--auth-input-bg);
    color: var(--auth-text);

    transition: all 0.2s ease;
    /* Browser Standard-Inputs resetten */
    appearance: none;
    margin: 0;
}

.otp-container[b-44kxgy1ed9]  input.otp-input:focus {
    outline: none;
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2); /* Nutzt Primary Opacity */
    transform: translateY(-1px);
}

/* 7. Timer & Resend Section */
.otp-timer-section[b-44kxgy1ed9] {
    text-align: center;
    font-size: 0.875rem;
    color: var(--auth-text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    min-height: 1.5rem; /* Verhindert Springen */
}

.time-value[b-44kxgy1ed9] {
    color: var(--auth-primary);
    font-weight: 600;
    font-variant-numeric: tabular-nums; /* Verhindert Wackeln der Zahlen */
}

.btn-link[b-44kxgy1ed9] {
    background: none;
    border: none;
    padding: 0;
    color: var(--auth-primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-link:hover[b-44kxgy1ed9] {
    color: var(--auth-primary-hover);
    text-decoration: underline;
}

.btn-link:disabled[b-44kxgy1ed9] {
    color: var(--auth-text-muted);
    cursor: not-allowed;
    text-decoration: none;
}

/* 8. Validation Wrapper */
.validation-wrapper[b-44kxgy1ed9] {
    min-height: 1rem;
    font-size: 0.75rem;
    line-height: 1rem;
    text-align: center;
}

.otp-container[b-44kxgy1ed9]  .validation-message {
    color: var(--auth-error);
    margin: 0;
}

/* 9. Buttons */
.btn[b-44kxgy1ed9] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-primary[b-44kxgy1ed9] {
    background-color: var(--auth-primary);
    color: #ffffff;
}

.btn-primary:hover[b-44kxgy1ed9] {
    background-color: var(--auth-primary-hover);
}

.btn-primary:disabled[b-44kxgy1ed9] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 10. Footer */
.auth-footer[b-44kxgy1ed9] {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--auth-text-muted);
}

.auth-footer a[b-44kxgy1ed9] {
    color: var(--auth-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-footer a:hover[b-44kxgy1ed9] {
    color: var(--auth-primary-hover);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .content-wrapper[b-44kxgy1ed9] {
        padding: 0.5rem;
    }

    .auth-card[b-44kxgy1ed9] {
        padding: 1.5rem;
    }

    .auth-header h1[b-44kxgy1ed9] {
        font-size: 1.5rem;
    }

    .otp-container[b-44kxgy1ed9]  input.otp-input {
        width: 2.5rem;
        height: 3rem;
        font-size: 1.25rem;
    }
}
/* _content/Authify.UI/Pages/Register.razor.rz.scp.css */
/* 1. Global Reset & Base im Scope */
.register-container[b-9r1qvy4obj], .register-container *[b-9r1qvy4obj] {
    box-sizing: border-box;
}

/* 2. Container Background */
.register-container[b-9r1qvy4obj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;

    background-color: var(--auth-bg);
    color: var(--auth-text);
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Wrapper für max-width */
.content-wrapper[b-9r1qvy4obj] {
    width: 100%;
    max-width: 400px; /* Etwas breiter als Login, da mehr Felder */
    padding: 1rem;
    margin: auto; /* Wichtig für Zentrierung beim Scrollen */
}

/* 3. Card Styling */
.auth-card[b-9r1qvy4obj] {
    background-color: var(--auth-card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--auth-shadow);
    border: 1px solid var(--auth-border);
    transition: transform 0.2s ease;
    width: 100%;
}

.auth-card:hover[b-9r1qvy4obj] {
    transform: translateY(-2px);
}

/* 4. Header */
.auth-header[b-9r1qvy4obj] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1[b-9r1qvy4obj] {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: var(--auth-text);
}

.auth-header p[b-9r1qvy4obj] {
    font-size: 0.875rem;
    color: var(--auth-text-muted);
    margin: 0;
}

/* 5. Form Structure - DAS DIV SORGT FÜR DIE ABSTÄNDE */
.auth-stack[b-9r1qvy4obj] {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Einheitlicher Abstand zwischen allen Elementen */
}

.form-group[b-9r1qvy4obj] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label[b-9r1qvy4obj] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--auth-text);
}

/* 6. Inputs */
.register-container[b-9r1qvy4obj]  input:not([type="checkbox"]) {
    padding: 0.75rem 1rem;
    border: 1px solid var(--auth-border);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;

    background-color: var(--auth-input-bg);
    color: var(--auth-text);
    display: block;
}

.register-container[b-9r1qvy4obj]  input:not([type="checkbox"]):focus {
    outline: none;
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2); /* Nutzt Primary Color Opacity */
}

/* Password Group */
.password-input[b-9r1qvy4obj] {
    position: relative;
    width: 100%;
}

.password-input[b-9r1qvy4obj]  input {
    padding-right: 2.5rem;
}

/* Toggle Password Button */
.toggle-password[b-9r1qvy4obj] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);

    background: none;
    border: none;
    color: var(--auth-text-muted);
    cursor: pointer;
    padding: 0.25rem;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.toggle-password:hover[b-9r1qvy4obj] {
    color: var(--auth-text);
}

/* 7. Validation Wrapper (Reserviert Platz) */
.validation-wrapper[b-9r1qvy4obj] {
    min-height: 1rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.register-container[b-9r1qvy4obj]  .validation-message {
    color: var(--auth-error);
    margin: 0;
}

/* 8. Terms Checkbox */
.terms[b-9r1qvy4obj] {
    display: flex;
    align-items: flex-start; /* Oben bündig bei mehrzeiligem Text */
    gap: 0.75rem;
    color: var(--auth-text-muted);
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.terms[b-9r1qvy4obj]  input[type="checkbox"] {
    cursor: pointer;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.1rem; /* Feinjustierung zur Textzeile */
    accent-color: var(--auth-primary);
}

.terms a[b-9r1qvy4obj] {
    color: var(--auth-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.terms a:hover[b-9r1qvy4obj] {
    text-decoration: underline;
    color: var(--auth-primary-hover);
}

/* 9. Buttons */
.btn[b-9r1qvy4obj] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-primary[b-9r1qvy4obj] {
    background-color: var(--auth-primary);
    color: #ffffff;
}

.btn-primary:hover[b-9r1qvy4obj] {
    background-color: var(--auth-primary-hover);
}

.btn-primary:disabled[b-9r1qvy4obj] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* OAuth Buttons */
.oauth-buttons[b-9r1qvy4obj] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-oauth[b-9r1qvy4obj] {
    background-color: var(--auth-card-bg);
    border: 1px solid var(--auth-border);
    color: var(--auth-text);
}

.btn-oauth:hover[b-9r1qvy4obj] {
    background-color: var(--auth-bg);
}

/* 10. Divider */
.divider[b-9r1qvy4obj] {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--auth-text-muted);
    font-size: 0.875rem;
}

.divider[b-9r1qvy4obj]::before,
.divider[b-9r1qvy4obj]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--auth-border);
}

.divider span[b-9r1qvy4obj] {
    padding: 0 1rem;
}

/* 11. Footer */
.auth-footer[b-9r1qvy4obj] {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--auth-text-muted);
}

.auth-footer a[b-9r1qvy4obj] {
    color: var(--auth-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-footer a:hover[b-9r1qvy4obj] {
    text-decoration: underline;
}

.alert-danger[b-9r1qvy4obj] {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--auth-error);
    border: 1px solid var(--auth-error);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .content-wrapper[b-9r1qvy4obj] {
        padding: 0.5rem;
    }

    .auth-card[b-9r1qvy4obj] {
        padding: 1.5rem;
    }

    .auth-header h1[b-9r1qvy4obj] {
        font-size: 1.5rem;
    }
}
/* _content/Authify.UI/Pages/ResetPassword.razor.rz.scp.css */
/* 1. Global Reset & Base im Scope */
.reset-container[b-yrwzmx0mng], .reset-container *[b-yrwzmx0mng] {
    box-sizing: border-box;
}

/* 2. Container Background */
.reset-container[b-yrwzmx0mng] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;

    background-color: var(--auth-bg);
    color: var(--auth-text);
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Wrapper für max-width */
.content-wrapper[b-yrwzmx0mng] {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    margin: auto;
}

/* 3. Card Styling */
.auth-card[b-yrwzmx0mng] {
    background-color: var(--auth-card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--auth-shadow);
    border: 1px solid var(--auth-border);
    transition: transform 0.2s ease;
    width: 100%;
}

.auth-card:hover[b-yrwzmx0mng] {
    transform: translateY(-2px);
}

/* 4. Header */
.auth-header[b-yrwzmx0mng] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1[b-yrwzmx0mng] {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: var(--auth-text);
}

.auth-header p[b-yrwzmx0mng] {
    font-size: 0.875rem;
    color: var(--auth-text-muted);
    margin: 0;
}

/* 5. Form Structure */
.auth-stack[b-yrwzmx0mng] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group[b-yrwzmx0mng] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label[b-yrwzmx0mng] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--auth-text);
}

/* 6. Inputs */
.reset-container[b-yrwzmx0mng]  input:not([type="checkbox"]) {
    padding: 0.75rem 1rem;
    border: 1px solid var(--auth-border);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;

    background-color: var(--auth-input-bg);
    color: var(--auth-text);
    display: block;
}

.reset-container[b-yrwzmx0mng]  input:not([type="checkbox"]):focus {
    outline: none;
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2); /* Nutzt Primary Color Opacity */
}

/* Password Group */
.password-input[b-yrwzmx0mng] {
    position: relative;
    width: 100%;
}

.password-input[b-yrwzmx0mng]  input {
    padding-right: 2.5rem;
}

/* Toggle Password Button */
.toggle-password[b-yrwzmx0mng] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);

    background: none;
    border: none;
    color: var(--auth-text-muted);
    cursor: pointer;
    padding: 0.25rem;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.toggle-password:hover[b-yrwzmx0mng] {
    color: var(--auth-text);
}

/* 7. Validation Wrapper */
.validation-wrapper[b-yrwzmx0mng] {
    min-height: 1rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.reset-container[b-yrwzmx0mng]  .validation-message {
    color: var(--auth-error);
    margin: 0;
}

/* 8. Buttons */
.btn[b-yrwzmx0mng] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-decoration: none; /* Für das <a> Tag wichtig */
}

.btn-primary[b-yrwzmx0mng] {
    background-color: var(--auth-primary);
    color: #ffffff;
}

.btn-primary:hover[b-yrwzmx0mng] {
    background-color: var(--auth-primary-hover);
}

.btn-primary:disabled[b-yrwzmx0mng] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 9. Success Message Styles */
.success-message[b-yrwzmx0mng] {
    text-align: center;
    padding: 1rem 0;
    animation: fadeIn-b-yrwzmx0mng 0.5s ease-in-out;
    width: 100%; /* Sicherstellen, dass Wrapper greift */
}

.success-icon[b-yrwzmx0mng] {
    font-size: 3rem;
    color: var(--auth-success, #10b981);
    margin-bottom: 1rem;
}

.success-message h2[b-yrwzmx0mng] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--auth-text);
    margin-bottom: 0.5rem;
}

.success-message p[b-yrwzmx0mng] {
    color: var(--auth-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

@keyframes fadeIn-b-yrwzmx0mng {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .content-wrapper[b-yrwzmx0mng] {
        padding: 0.5rem;
    }

    .auth-card[b-yrwzmx0mng] {
        padding: 1.5rem;
    }

    .auth-header h1[b-yrwzmx0mng] {
        font-size: 1.5rem;
    }
}
