.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem 2rem;
    text-align: center;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-box .logo {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.auth-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-vk {
    background-color: #0077FF;
    color: white;
    width: 100%;
    gap: 12px;
}

.btn-vk:hover {
    background-color: #0066ee;
    color: white;
}

.btn-primary {
    width: 100%;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
    margin: 1rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.divider span {
    padding: 0 10px;
    font-size: 0.85rem;
}

.terms {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.terms a {
    text-decoration: underline;
}