/* ===== Auth Modal Styles ===== */
.auth-modal {
    max-width: 400px;
}

.auth-modal h2 {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
}

.auth-form form {
    margin-top: 20px;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-switch a {
    color: var(--primary-color);
    font-weight: 500;
}

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

/* ===== Landing Auth Forms ===== */
.auth-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 8px;
}

.auth-container .subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.auth-container form {
    margin-top: 20px;
}

.auth-container .auth-switch {
    text-align: center;
    margin-top: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .auth-modal {
        width: 95%;
        padding: 20px;
    }
}