/* auth.css */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 4rem 2rem;
    background: radial-gradient(circle at bottom center, var(--primary-light) 0%, transparent 60%);
}

.auth-card {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

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

.auth-header-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.auth-header-text {
    color: var(--text-muted);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-main);
}

.auth-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-color);
    color: var(--text-main);
}

.auth-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
    background-color: var(--surface-color);
}

.auth-form-submit {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.auth-footer-link {
    font-weight: 600;
    color: var(--primary-color);
}

.auth-footer-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}