/* ========================================
   AUTH PAGES (Login / Register / Profile)
======================================== */

.auth-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    background: var(--bg-light);
}

.auth-card {
    background: var(--card-bg);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 420px;
}

.auth-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.auth-header h1 {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.auth-header p {
    color: var(--text-muted);
}

.auth-footer {
    text-align: center;
    margin-top: var(--space-lg);
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Profile specific */
.auth-card.profile-card {
    max-width: 600px;
}

/* Addresses list */
#addresses-list {
    margin-bottom: var(--space-lg);
}

#addresses-list > div {
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

#addresses-list strong {
    display: block;
    margin-bottom: var(--space-xs);
}

#addresses-list small {
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .auth-container {
        padding: var(--space-md);
    }

    .auth-card {
        padding: var(--space-xl);
    }
}