/* ==========================================================================
   Ultraship – Auth-Stylesheet
   Wird von login.html, forgot-password.html und password-change.html geladen.

   SEKTION A  →  geteilte Karten-Optik der "einfachen" Auth-Seiten
                 (forgot-password, password-change). NICHT umbenennen –
                 diese Klassen werden von jenen Templates verwendet.
   SEKTION B  →  ".auth-page": das eigenständige Split-Screen-Login.
   ========================================================================== */


/* =========================================================================
   SEKTION A · geteilte Karte (forgot-password / password-change)
   ========================================================================= */

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
    gap: 3rem;
}

.login-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    animation: slideInUp 0.6s ease-out;
}

.login-footer .back-to-login {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.login-footer .back-to-login:hover {
    color: var(--ci-orange);
    transform: translateX(-3px);
}

.login-footer .back-to-login i {
    font-size: 0.8rem;
}

.login-card h2 {
    border-left: none !important;
    padding-left: 0 !important;
    color: var(--ci-black) !important;
    background: transparent !important;
}

.login-card .alert {
    margin-top: 1rem;
    text-align: left;
    border-radius: 0.75rem;
}

.password-input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ci-orange) 0%, #c33f17 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(233, 77, 29, 0.3);
}

.login-icon i {
    font-size: 2.5rem;
    color: white;
}

.login-header h2 {
    color: var(--ci-black);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border: none;
    padding: 0;
}

.login-header p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

.login-form { margin-top: 2rem; }

.login-form .form-group { margin-bottom: 1.5rem; }

.login-form .form-label {
    font-weight: 600;
    color: var(--ci-black);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-form .form-label i {
    color: var(--ci-orange);
    font-size: 0.85rem;
}

.login-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    border-color: var(--ci-orange);
    box-shadow: 0 0 0 0.2rem rgba(233, 77, 29, 0.15);
    outline: none;
}

.password-input-wrapper .form-control { padding-right: 3rem; }

.password-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 1rem;
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.2s ease;
}

.password-toggle:hover { color: var(--ci-orange); }

.login-card .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #dee2e6;
    border-radius: 0.35rem;
    cursor: pointer;
}

.login-card .form-check-input:checked {
    background-color: var(--ci-orange);
    border-color: var(--ci-orange);
}

.login-card .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 77, 29, 0.15);
}

.login-card .form-check-label {
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    user-select: none;
}

.login-card .alert,
.login-container .alert {
    border: none;
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.login-container .alert i { font-size: 1.1rem; }
.login-container .alert-danger  { background: #f8d7da; color: #721c24; }
.login-container .alert-success { background: #d4edda; color: #155724; }

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, #CB4218 0%, #a33414 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.95rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 77, 29, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-login:hover {
    background: linear-gradient(135deg, #c33f17 0%, #a33414 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 77, 29, 0.4);
}

.btn-login:active { transform: translateY(0); }

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.forgot-password {
    color: var(--ci-orange);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.forgot-password:hover { color: #c33f17; text-decoration: underline; }


/* =========================================================================
   SEKTION B · ".auth-page" – Split-Screen-Login (login.html)
   ========================================================================= */

.auth-page {
    --auth-orange: var(--ci-orange, #E94D1D);
    --auth-orange-deep: #c33f17;
    --auth-ink: #16181d;
    --auth-muted: #6b727e;
    --auth-line: #e4e7ec;
    --auth-field-bg: #fff;

    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--auth-ink);
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Globale h1..h6-Regel (weiß + orangefarbener Rand) hier neutralisieren */
.auth-page h1,
.auth-page h2,
.auth-page h3 {
    border: 0;
    padding: 0;
    margin: 0;
    letter-spacing: -0.01em;
    color: inherit;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: 100vh;
}

/* -------------------------------------------------- Brand-Panel (links) -- */
.auth-brand {
    position: relative;
    overflow: hidden;
    display: flex;
    background:
        radial-gradient(120% 120% at 85% 0%, #241a14 0%, rgba(36,26,20,0) 55%),
        linear-gradient(155deg, #1c1713 0%, #151317 52%, #0e0d10 100%);
    color: #fff;
    isolation: isolate;
}

/* warmer orangefarbener Lichtschein */
.auth-brand__glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(46% 40% at 88% 8%, rgba(233,77,29,0.42) 0%, rgba(233,77,29,0) 70%),
        radial-gradient(40% 42% at 6% 96%, rgba(233,77,29,0.16) 0%, rgba(233,77,29,0) 72%);
    filter: saturate(1.1);
}

/* feines Punkteraster + Hexagon-Wasserzeichen (Logo-Motiv) */
.auth-brand__grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.4px);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
            mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
    opacity: 0.9;
}

.auth-brand__grid::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -140px;
    width: 620px;
    height: 620px;
    opacity: 0.06;
    background: no-repeat center/contain
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M25 5 L75 5 L97 50 L75 95 L25 95 L3 50 Z' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M35 22 L65 22 L82 50 L65 78 L35 78 L18 50 Z' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
    transform: rotate(-6deg);
}

/* animierte "Route" mit wanderndem Paket */
.auth-brand__route {
    position: absolute;
    top: 12%;
    bottom: 12%;
    right: 8%;
    width: 2px;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.28) 0 8px, transparent 8px 20px);
    background-size: 2px 20px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
            mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
    opacity: 0.5;
}

.auth-brand__packet {
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border-radius: 50%;
    background: var(--auth-orange);
    box-shadow: 0 0 0 4px rgba(233,77,29,0.20), 0 0 16px 3px rgba(233,77,29,0.65);
}

.auth-brand__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: clamp(2.5rem, 4.2vw, 4.25rem);
    gap: 2rem;
}

.auth-brand__logo { display: inline-flex; }
.auth-brand__logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.auth-brand__content {
    margin-top: auto;
    max-width: 30rem;
}

.auth-brand__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffb599;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(233, 77, 29, 0.4);
    border-radius: 999px;
    background: rgba(233, 77, 29, 0.10);
    margin-bottom: 1.35rem;
}

.auth-brand__headline {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    line-height: 1.06;
    color: #fff;
}
.auth-brand__headline span { color: var(--auth-orange); }

.auth-brand__sub {
    margin: 1.15rem 0 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
}

.auth-brand__features {
    list-style: none;
    margin: 2.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.auth-brand__features li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-brand__features .feat-ic {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(233, 77, 29, 0.14);
    border: 1px solid rgba(233, 77, 29, 0.28);
    color: #ff8a5f;
    font-size: 1.05rem;
}

.auth-brand__features .feat-tx { display: flex; flex-direction: column; line-height: 1.35; }
.auth-brand__features .feat-tx strong { font-weight: 600; font-size: 0.98rem; color: #fff; }
.auth-brand__features .feat-tx span   { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }

.auth-brand__foot { margin-top: 2rem; }

.auth-brand__carriers-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.7rem;
}

.auth-carrier-strip { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.auth-carrier-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.auth-carrier-pill img { height: 20px; width: auto; display: block; }

/* -------------------------------------------------- Form-Panel (rechts) -- */
.auth-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: clamp(2rem, 4vw, 3.5rem);
    background: #ffffff;
}

.auth-card {
    width: 100%;
    max-width: 400px;
    animation: authRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes authRise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Logo-Chip nur auf Mobile (Brand-Panel dann ausgeblendet) */
.auth-mobile-logo { display: none; }

.auth-card__head { margin-bottom: 1.85rem; }
.auth-card__head h2 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--auth-ink);
}
.auth-card__head p {
    margin: 0.5rem 0 0;
    color: var(--auth-muted);
    font-size: 0.98rem;
}

/* Alerts */
.auth-alerts:empty { display: none; }
.auth-alert {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    border: 1px solid transparent;
    animation: authRise 0.4s ease both;
}
.auth-alert i { font-size: 1.05rem; flex: 0 0 auto; }
.auth-alert--error   { background: #fdecec; color: #8f2a2a; border-color: #f6c9c9; }
.auth-alert--success { background: #e8f6ec; color: #1f6a37; border-color: #c4e6cf; }

/* Formular */
.auth-form { display: flex; flex-direction: column; gap: 1.15rem; }
.auth-group { display: flex; flex-direction: column; }

.auth-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #384150;
    margin-bottom: 0.5rem;
}

.auth-field { position: relative; display: flex; align-items: center; }

.auth-field__icon {
    position: absolute;
    left: 1rem;
    color: #9aa3ad;
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.auth-input.form-control {
    width: 100%;
    border: 1.5px solid var(--auth-line);
    border-radius: 0.8rem;
    background: var(--auth-field-bg);
    padding: 0.9rem 1rem 0.9rem 2.85rem;
    font-size: 0.98rem;
    color: var(--auth-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.auth-input.form-control::placeholder { color: #6b727e; font-style: normal; }

.auth-input.form-control:hover { border-color: #cfd4db; }

.auth-input.form-control:focus {
    border-color: var(--auth-orange);
    box-shadow: 0 0 0 4px rgba(233, 77, 29, 0.14);
    outline: none;
    background: #fff;
}
.auth-field:focus-within .auth-field__icon { color: var(--auth-orange); }

/* Passwort-Feld: Platz für den Toggle */
#password.auth-input.form-control { padding-right: 3rem; }

.auth-toggle {
    position: absolute;
    right: 0.35rem;
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    border-radius: 0.6rem;
    color: #9aa3ad;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}
.auth-toggle:hover { color: var(--auth-orange); background: rgba(233, 77, 29, 0.08); }
.auth-toggle:focus-visible {
    outline: none;
    color: var(--auth-orange);
    box-shadow: 0 0 0 3px rgba(233, 77, 29, 0.25);
}

.auth-hint {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.55rem 0 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: #94520f;
}
.auth-hint[hidden] { display: none; }

/* Zeile: "Angemeldet bleiben" + "Passwort vergessen?" */
.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.15rem;
}

.auth-check {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    user-select: none;
}
.auth-check input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
}
.auth-check__box {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 1.5px solid #cfd4db;
    border-radius: 0.45rem;
    background: #fff;
    color: #fff;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.auth-check__box i { font-size: 0.7rem; opacity: 0; transform: scale(0.6); transition: all 0.15s ease; }
.auth-check input:checked ~ .auth-check__box {
    background: var(--auth-orange);
    border-color: var(--auth-orange);
}
.auth-check input:checked ~ .auth-check__box i { opacity: 1; transform: scale(1); }
.auth-check input:focus-visible ~ .auth-check__box { box-shadow: 0 0 0 3px rgba(233, 77, 29, 0.22); }
.auth-check__label { font-size: 0.9rem; color: #4a5261; }

.auth-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--auth-orange-deep);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.auth-link:hover { color: #a33414; text-decoration: underline; }

.auth-link:focus-visible,
.auth-copy a:focus-visible,
.auth-brand__logo:focus-visible {
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 0 3px rgba(233, 77, 29, 0.35);
}

/* Submit-Button */
.auth-submit {
    position: relative;
    margin-top: 0.6rem;
    width: 100%;
    min-height: 3.15rem;
    border: 0;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, #CB4218 0%, #a33414 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(233, 77, 29, 0.32);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
    overflow: hidden;
}
.auth-submit__label { display: inline-flex; align-items: center; gap: 0.55rem; }
.auth-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(233, 77, 29, 0.42); }
.auth-submit:active { transform: translateY(0); }
.auth-submit:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(233, 77, 29, 0.28), 0 8px 22px rgba(233, 77, 29, 0.32);
}
.auth-submit:disabled { cursor: progress; filter: saturate(0.9); }

.auth-submit__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.15rem;
    height: 1.15rem;
    margin: -0.575rem 0 0 -0.575rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: authSpin 0.7s linear infinite;
}
.auth-submit.is-loading .auth-submit__label { opacity: 0; }
.auth-submit.is-loading .auth-submit__spinner { opacity: 1; }

@keyframes authSpin { to { transform: rotate(360deg); } }

/* Footer / Copyright */
.auth-foot {
    margin-top: 1.6rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--auth-line);
    text-align: center;
}
.auth-foot__secure {
    margin: 0;
    font-size: 0.82rem;
    color: var(--auth-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.auth-foot__secure i { color: #8b939f; }

.auth-copy {
    margin: 1.75rem 0 0;
    font-size: 0.8rem;
    color: #6b727e;
    text-align: center;
}
.auth-copy a { color: var(--auth-muted); text-decoration: none; font-weight: 600; }
.auth-copy a:hover { color: var(--auth-orange); text-decoration: underline; }


/* -------------------------------------------------- Responsive ----------- */
@media (max-width: 992px) {
    .auth-shell { grid-template-columns: minmax(0, 1fr); }
    .auth-brand { display: none; }

    .auth-main {
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: clamp(2.5rem, 8vh, 4.5rem);
        background: linear-gradient(180deg, #fbfbfc 0%, #ffffff 40%);
    }

    .auth-mobile-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 1.75rem;
    }
    .auth-mobile-logo img {
        height: 30px;
        width: auto;
        padding: 0.6rem 1.1rem;
        background: var(--auth-ink);
        border-radius: 0.9rem;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
        box-sizing: content-box;
    }
}

@media (max-width: 480px) {
    .auth-main { padding-left: 1.35rem; padding-right: 1.35rem; }
    .auth-card__head h2 { font-size: 1.6rem; }
    .auth-row { flex-wrap: wrap; row-gap: 0.75rem; }
}

@media (min-width: 1500px) {
    .auth-card { max-width: 420px; }
}

/* -------------------------------------------------- Reduced Motion ------- */
@media (prefers-reduced-motion: no-preference) {
    .auth-brand__packet { animation: authPacket 5.5s cubic-bezier(0.45, 0, 0.55, 1) infinite; }
}

@keyframes authPacket {
    0%   { top: 0;    opacity: 0; }
    12%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .auth-card,
    .auth-alert { animation: none; }
    .auth-submit,
    .auth-input.form-control,
    .auth-toggle,
    .auth-check__box { transition: none; }
}

/* ── Passkey-Anmeldung ─────────────────────────────────────────────────────
   Der Block bleibt per hidden-Attribut unsichtbar, bis passkey-login.js die
   Browser-Unterstuetzung geprueft hat. Deshalb hier KEIN display-Wert, der das
   hidden ueberschreibt — genau daran verschwindet die Wirkung von hidden
   sonst still, und ein nicht unterstuetzter Browser zeigt einen toten Knopf. */
.auth-passkey[hidden] { display: none; }

.auth-passkey {
    margin-top: 1.25rem;
}

.auth-passkey__trenner {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    color: #9aa2ab;
    font-size: .82rem;
}

.auth-passkey__trenner::before,
.auth-passkey__trenner::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: #e6e8eb;
}

.auth-passkey__btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .8rem 1rem;
    border-radius: 12px;
    border: 1px solid #dfe3e8;
    background: #fff;
    color: #1f2937;
    font-size: .98rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.auth-passkey__btn:hover:not(:disabled) {
    border-color: #E94D1D;
    background: #fff8f6;
}

.auth-passkey__btn:disabled {
    opacity: .65;
    cursor: default;
}

.auth-passkey__btn i {
    color: #E94D1D;
    font-size: 1.05rem;
}

.auth-passkey__hint {
    margin: .6rem 0 0;
    font-size: .84rem;
    color: #6b7280;
    min-height: 1.1em;
    text-align: center;
}

.auth-passkey__hint--fehler {
    color: #c0392b;
}
