﻿.auth-shell--static {
    min-height: 760px;
}

    .auth-shell--static .auth-main {
        align-items: center;
        justify-content: center;
        padding: 48px 42px;
    }

.auth-static-panel {
    position: relative;
    z-index: 1;
    width: min(660px, 100%);
    margin: 0 auto;
    animation: authStaticFade .75s cubic-bezier(.22, 1, .36, 1) both;
}

.auth-static-panel--sm {
    width: min(560px, 100%);
}

.auth-static-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 22px;
}

.auth-static-header {
    text-align: center;
    margin-bottom: 24px;
}

    .auth-static-header h2 {
        margin: 0 0 10px;
        font-family: var(--auth-font-serif);
        font-size: clamp(2.2rem, 3.9vw, 4rem);
        line-height: 1;
        letter-spacing: .01em;
        color: rgba(46,46,46,.92);
    }

    .auth-static-header p {
        margin: 0;
        color: var(--auth-text-soft);
        font-size: 1rem;
        line-height: 1.65;
    }

.auth-static-badge {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(255,255,255,.58);
    box-shadow: 0 16px 30px rgba(0,0,0,.08);
    font-size: 2rem;
    font-weight: 800;
    color: var(--auth-coral);
}

.auth-static-badge--success {
    color: #3b7f57;
}

.auth-static-badge--danger {
    color: #b34139;
}

.auth-static-badge--neutral {
    color: var(--auth-dark);
}

.auth-static-alert {
    border-radius: 24px;
    padding: 18px 20px;
    text-align: center;
    line-height: 1.7;
    background: rgba(255,255,255,.48);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 12px 26px rgba(0,0,0,.05);
    color: rgba(46,46,46,.84);
    margin-bottom: 18px;
}

    .auth-static-alert strong {
        display: block;
        margin-bottom: 6px;
    }

.auth-static-alert--success {
    background: rgba(255,255,255,.52);
    border-color: rgba(117, 168, 135, 0.24);
}

.auth-static-alert--danger {
    background: rgba(255,255,255,.52);
    border-color: rgba(179, 65, 57, 0.18);
}

.auth-static-alert--neutral {
    background: rgba(255,255,255,.46);
}

.auth-static-form {
    display: grid;
    gap: 16px;
}

.auth-static-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.auth-static-actions {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

a.auth-submit {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-static-footer {
    margin-top: 14px;
    text-align: center;
    display: grid;
    gap: 10px;
}

    .auth-static-footer p {
        margin: 0;
        color: var(--auth-text-soft);
        line-height: 1.7;
    }

    .auth-static-footer a {
        color: rgba(46,46,46,.74);
        font-weight: 700;
        text-decoration: none;
        transition: color .2s ease;
    }

        .auth-static-footer a:hover {
            color: var(--auth-coral);
        }

.auth-static-email {
    margin: 10px 0 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--auth-coral);
    word-break: break-word;
}

.auth-static-note {
    margin: 0;
    text-align: center;
    color: var(--auth-text-soft);
    line-height: 1.7;
}

.auth-static-note--sm {
    font-size: .95rem;
}

.auth-static-code-input .auth-input {
    letter-spacing: .18em;
    text-transform: uppercase;
}

@keyframes authStaticFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1100px) {
    .auth-shell--static .auth-main {
        padding: 28px 22px 30px;
    }

    .auth-static-top {
        margin-bottom: 18px;
    }
}

@media (max-width: 760px) {
    .auth-static-header h2 {
        font-size: 2.2rem;
    }

    .auth-static-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-static-badge {
        width: 76px;
        height: 76px;
        border-radius: 24px;
        font-size: 1.7rem;
    }
}

.auth-summary {
    display: none;
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(229, 57, 53, 0.10);
    border: 1px solid rgba(229, 57, 53, 0.18);
    color: #b1332f;
    font-size: .92rem;
}

    .auth-summary ul {
        margin: 0;
        padding-left: 18px;
    }

    .auth-summary.validation-summary-valid,
    .auth-summary:empty {
        display: none !important;
    }

    .auth-summary.validation-summary-errors {
        display: block;
    }