/* ========================================
   auth-base.css — Общие стили auth-страниц.
   Header, footer, layout (flex-column body).
   Загружается через base_auth.html.
   ======================================== */

body {
    display: flex;
    flex-direction: column;
}

/* Header */
.header-simple {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
    background: rgba(15, 12, 41, 0.8);
    backdrop-filter: blur(10px);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-accent) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Container */
.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Footer */
.footer-simple {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(52, 211, 153, 0.2);
    background: rgba(15, 12, 41, 0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.copyright {
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 480px) {
    .main-container {
        padding: 20px 15px;
    }

    .footer-links {
        gap: 15px;
    }
}
