.auth-page {
    background:
        radial-gradient(circle at top left, rgba(0, 120, 190, .09), transparent 32rem),
        #f5f7fa;
    color: #172033;
    min-height: 100dvh;
}

.auth-shell {
    align-items: flex-start;
    display: flex;
    justify-content: center;
    min-height: 100dvh;
    padding: clamp(1rem, 4vw, 2.5rem);
}

.auth-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 1rem;
    box-shadow: 0 1.25rem 3rem rgba(16, 24, 40, .12);
    margin: auto 0;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    width: min(100%, 30rem);
}

.auth-logo {
    display: block;
    height: 2.5rem;
    margin: 0 auto;
    max-width: 11rem;
    object-fit: contain;
}

.auth-title {
    color: #101828;
    font-size: clamp(1.55rem, 5vw, 1.85rem);
    font-weight: 650;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin: 1.5rem 0 .5rem;
    text-align: center;
}

.auth-subtitle {
    color: #667085;
    font-size: .95rem;
    line-height: 1.55;
    margin: 0 auto 1.5rem;
    max-width: 26rem;
    text-align: center;
}

.auth-destination {
    align-items: center;
    background: #eef8ff;
    border: 1px solid #b9e4ff;
    border-radius: .75rem;
    color: #175cd3;
    display: flex;
    font-size: .875rem;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    padding: .65rem .85rem;
}

.auth-card .btn {
    align-items: center;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 600;
    gap: .5rem;
    justify-content: center;
    min-height: 3rem;
}

.auth-provider {
    background: #fff;
    border-color: #d0d5dd;
    color: #1d2939;
}

.auth-provider:hover,
.auth-provider:focus-visible {
    background: #f9fafb;
    border-color: #98a2b3;
    color: #101828;
}

.auth-provider-logo {
    align-items: center;
    display: inline-flex;
    height: 1.5rem;
    justify-content: center;
    width: 1.5rem;
}

.auth-provider-logo svg {
    height: 1.35rem;
    width: 1.35rem;
}

.auth-divider {
    align-items: center;
    color: #667085;
    display: flex;
    font-size: .82rem;
    gap: .75rem;
    margin: 1.25rem 0;
}

.auth-divider::before,
.auth-divider::after {
    background: #e4e7ec;
    content: "";
    flex: 1;
    height: 1px;
}

.auth-card .form-control {
    min-height: 3.5rem;
}

.auth-password {
    position: relative;
}

.auth-password .form-control {
    padding-right: 3.25rem;
}

.auth-password-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: #667085;
    display: inline-flex;
    height: 2.75rem;
    justify-content: center;
    position: absolute;
    right: .4rem;
    top: .4rem;
    width: 2.75rem;
    z-index: 5;
}

.auth-password-toggle:focus-visible {
    border-radius: .45rem;
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .25);
    outline: 0;
}

.auth-alert {
    font-size: .925rem;
    line-height: 1.5;
}

.auth-recovery {
    border-top: 1px solid #eaecf0;
    margin-top: 1.25rem;
    padding-top: 1rem;
}

.auth-recovery summary {
    color: #475467;
    cursor: pointer;
    font-size: .875rem;
    font-weight: 600;
    list-style-position: inside;
    text-align: center;
}

.auth-recovery[open] summary {
    margin-bottom: 1rem;
}

.auth-fine-print {
    color: #667085;
    font-size: .8rem;
    line-height: 1.45;
}

@media (max-width: 575.98px) {
    .auth-shell {
        align-items: flex-start;
        padding: .75rem;
    }

    .auth-card {
        border-radius: .85rem;
        margin: .25rem 0;
        padding: 1.35rem;
    }
}
