/* ===========================================
   Auth-specific styles
   Note: common.css must be loaded first
   =========================================== */

/* Auth container - centered card layout */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.auth-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 20px var(--shadow);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 600;
}

/* Auth form specifics */
.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-actions {
    margin-top: 30px;
}

.auth-form .btn-primary {
    width: 100%;
}

/* Auth links */
.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Auth messages */
.auth-card .error-message {
    background: var(--error-color);
    color: white;
    padding: 12px;
    border-radius: var(--radius-small);
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.loading {
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border-radius: var(--radius-small);
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

/* Auth responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 24px;
        margin: 0 16px;
    }
}
