/* register.css - Estilos da tela de Cadastro */

body {
    background: linear-gradient(135deg, #198754 0%, #0d6efd 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
    padding: 20px;
}

.card-register {
    width: 100%;
    max-width: 500px; /* Largura compacta estilo mobile/app */
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    overflow: hidden;
    position: relative;
}

/* Animações do Wizard */
.step-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Estilo da Caixa de Contrato */
.contract-box {
    height: 350px;
    overflow-y: auto;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    font-size: 0.85rem;
    text-align: justify;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.contract-box h6 {
    color: #0d6efd;
    font-weight: 800;
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contract-box p {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #495057;
}

.contract-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Estilo do Stepper (Bolinhas) */
.step-dot {
    width: 12px; 
    height: 12px; 
    background: #e9ecef; 
    border-radius: 50%; 
    display: inline-block; 
    margin: 0 6px; 
    transition: all 0.3s ease;
}

.step-dot.active { 
    background: #0d6efd; 
    transform: scale(1.3); 
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}