/* ==============================================
   RESET BÁSICO E ESTRUTURA SPLIT SCREEN
   (Mesma base da tela de Cadastro para consistência)
   ============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    min-height: 100vh;
}

.form-side {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #ffffff;
}

.form-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo dentro da coluna esquerda */
}

.visual-side {
    width: 55%;
    background: linear-gradient(135deg, #4a90e2 0%, #071E3D 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 3rem;
    text-align: center;
}

.visual-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    opacity: 0.95;
    max-width: 500px;
}

/* ==============================================
   TEXTOS E LOGO
   ============================================== */
.logo {
    height: 100px;
    margin-bottom: 2rem;
}

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

.text1 {
    color: #071E3D;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.header-text p {
    color: #666;
    font-size: 1rem;
}

/* ==============================================
   BOTÕES DE ESCOLHA DE PERFIL
   ============================================== */
.opcoes {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaço entre os botões */
    margin-bottom: 2.5rem;
    width: 100%;
}

.opcao {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    background-color: #f0f4ff;
    border: 2px solid #071E3D;
    border-radius: 12px; /* Cantos um pouco menos arredondados para web */
    text-decoration: none;
    color: #071E3D;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

/* Efeito ao passar o mouse */
.opcao:hover {
    transform: translateY(-5px); /* Sobe um pouquinho (mais elegante que -10px) */
    background-color: #e0eaff;
    box-shadow: 0 8px 15px rgba(7, 30, 61, 0.1);
}

.opcao img { 
    width: 60px; 
    margin-bottom: 12px; 
    opacity: 0.9;
}

.opcao span { 
    font-size: 18px; 
    font-weight: 700; 
}

/* ==============================================
   LINK VOLTAR
   ============================================== */
.link-voltar {
    margin-top: 1rem;
}

.link-voltar a {
    color: #666;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.link-voltar a:hover { 
    color: #071E3D;
    text-decoration: underline; 
}

/* ==============================================
   RESPONSIVIDADE (Celular)
   ============================================== */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
    }
    
    .visual-side {
        display: none;
    }

    .form-side {
        width: 100%;
        min-height: 100vh;
        padding: 2rem 1rem;
    }
}

/* Adaptação dos botões para telas muito pequenas */
@media (max-width: 400px) {
    .opcoes { 
        flex-direction: column; 
        align-items: center; 
    }
    
    /* Transforma os quadrados em retângulos horizontais no celular */
    .opcao  { 
        width: 100%; 
        max-width: 280px; 
        height: 90px; 
        flex-direction: row; 
        gap: 20px; 
    }
    
    .opcao img { 
        margin-bottom: 0; 
        width: 40px; 
    }
}