/* Общий каркас страниц авторизации: hero, заголовки, кнопка «назад».
   Цвета, шрифты и рамки приходят из base.html + jet-theme.css —
   здесь только размеры и отступы. */

.auth-hero {
    text-align: center;
    margin-bottom: 24px;
}

.auth-icon {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

/* Заголовок для длинных документов */
.auth-title--sm {
    font-size: 24px;
}

.auth-subtitle {
    font-size: 16px;
    color: var(--soft);
    margin-bottom: 0;
}

.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: var(--r-btn);
    background: none;
    color: var(--ink);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-back:hover {
    background: #faf9f7;
}

.auth-back:active {
    transform: scale(0.95);
}

@media (max-width: 480px) {
    .auth-icon {
        font-size: 64px;
    }

    .auth-title {
        font-size: 26px;
    }

    .auth-title--sm {
        font-size: 20px;
    }

    .auth-subtitle {
        font-size: 14px;
    }
}
