#auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
}

.auth-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.auth-card h1 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--primary);
}

.tagline {
    color: var(--gray-500);
    margin-bottom: 30px;
    font-size: 14px;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

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

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

.switch-form .link-btn {
    margin-left: 4px;
}
