/* Estilo Moderno para o Wizard */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}
.wizard-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}
.wizard-step {
    position: relative;
    z-index: 2;
    background: #f8f9fa;
    padding: 0 10px;
}
.wizard-step .btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    background-color: #fff;
    border: 2px solid #e9ecef;
    color: #6c757d;
    transition: all 0.3s;
}
.wizard-step .btn.active {
    border-color: #0d6efd;
    background-color: #0d6efd;
    color: #fff;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* Compactando os inputs de forma elegante */
.form-fieldset {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.form-fieldset legend {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    width: auto;
    padding: 0 10px;
    margin-bottom: 0;
    float: none;
}
.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}
/* Tamanho padronizado para os ícones do Lucide dentro dos inputs compactos */
.lucide-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2px;
    color: #6c757d;
}

/* Deixa o input group mais bonito */
.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.25rem 0.5rem; /* Compacto */
}
