/* Authentication pages styles */

.auth-container {
    max-width: 450px;
    margin: 4rem auto;
    padding: 2rem;
}

.auth-card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-form {
    margin-top: 2rem;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.password-requirements {
    background-color: var(--surface-light);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
}

.password-requirements h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.password-requirements ul {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.password-requirements li {
    padding: 0.25rem 0;
}

.password-requirements li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
}

#alert-container {
    margin-bottom: 1rem;
}
