/* Central auth pages — logo and typography */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(165deg, #f8fafc 0%, #eef2f7 45%, #e8edf4 100%);
}

/* Wide dialog (~portal c-card-1); 1 50rem allows shrink on narrow viewports */
.auth-card-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.auth-card-shell {
    flex: 0 1 50rem;
    max-width: 50rem;
    width: 100%;
    min-width: 0;
}

.auth-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.auth-brand {
    text-align: center;
}

.auth-brand-logo {
    display: inline-block;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.06));
}

.auth-brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    color: #0f172a;
    margin-top: 0.35rem;
}

.auth-brand-tagline {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.auth-primary.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    font-weight: 600;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    border-radius: 8px;
}

.auth-primary.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}
