/**
 * Páginas de Autenticação - Split Screen
 */

.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-visual {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #0ea5e9 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.auth-visual-content {
    max-width: 400px;
    color: white;
}

.auth-visual h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.auth-visual p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.7;
}

.auth-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    background: var(--card);
}

.auth-form {
    max-width: 400px;
    width: 100%;
}

.auth-form h2 {
    margin-bottom: 0.5rem;
}

.auth-form .subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Progress bar cadastro */
.progress-steps {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.progress-step {
    flex: 1;
    height: 4px;
    background: var(--background-alt);
    border-radius: var(--radius-full);
    transition: background var(--transition);
}

.progress-step.active,
.progress-step.completed {
    background: var(--primary);
}

/* Cadastro steps */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@media (max-width: 1024px) {
    .auth-page {
        grid-template-columns: 1fr;
    }
    
    .auth-visual {
        min-height: 200px;
        padding: 2rem;
    }
    
    .auth-visual h1 {
        font-size: 1.75rem;
    }
    
    .auth-form-container {
        padding: 2rem 1.5rem;
    }
}
