body {
    background-color: #f3f4f6;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.registration-container {
    padding: 40px 0;
}

/* Tarjeta más compacta y centrada */
.main-card {
    border-radius: 12px !important;
    overflow: hidden;
}

/* Wizard Nav: Compacto y elegante */
.wizard-nav {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #edf2f7;
    padding: 15px 0;
}

.step-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #a0aec0;
    position: relative;
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #edf2f7;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.step-txt {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-item.active {
    color: #3182ce;
}

    .step-item.active .step-num {
        background: #3182ce;
        color: white;
    }

/* Inputs: Altura estándar profesional (No más gigantes) */
.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 4px;
}

.form-control {
    height: 38px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    border: 1px solid #cbd5e0 !important;
}

.input-group-text {
    height: 38px !important;
    font-size: 0.8rem !important;
    background-color: #f7fafc !important;
    border: 1px solid #cbd5e0 !important;
}

/* Botones más sobrios */
.btn {
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-primary {
    background-color: #3182ce;
    border: none;
}

.btn-success {
    background-color: #38a169;
    border: none;
}

/* Títulos de sección internos */
.section-header {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    border-bottom: 2px solid #3182ce;
    display: inline-block;
}

.tab-pane-manual {
    display: none;
    animation: fadeIn 0.3s ease;
}

    .tab-pane-manual.active {
        display: block;
    }
/* Homogenizar selects con inputs */
.form-select {
    height: 38px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    border: 1px solid #cbd5e0 !important;
    background-color: #fff !important;
}

    .form-select:focus {
        border-color: #3182ce !important;
        box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1) !important;
    }
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

 
