.auth-page {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}
.auth-main {
    display: flex;
    min-height: 100vh;
}
.auth-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    max-width: 450px;
    background-color: var(--bg-color);
}
.auth-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}
.auth-container h2 {
    font-size: 2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 0.5rem;
}
.auth-subtitle {
    text-align: center;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}
.auth-form {
    width: 100%;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s, background-color 0.3s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.form-options {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}
.link-forgot {
    font-size: 0.9rem;
    color: var(--primary-color);
}
.auth-switch {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-color-light);
}
.auth-switch a {
    color: var(--primary-color);
    font-weight: 500;
}
.auth-image {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=1974&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    display: none;
}

@media (min-width: 768px) {
    .auth-image {
        display: block;
    }
}
