/* Auth pages styles */

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.auth-links {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.auth-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

@media (max-width: 480px) {
    .auth-card {
        padding: 24px;
    }
}
