/* --- Estilos Globales --- */
body {
    background-color: #ffffff;
    color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-form {
    max-width: 450px;
    margin: 40px auto;
    padding: 20px;
}

/* --- Barra de Progreso --- */
.progress-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 8px;
}

.step {
    height: 4px;
    width: 45px;
    background-color: #e0e6ed;
    border-radius: 2px;
}

.step.active {
    background-color: #000;
}

/* --- Formulario y Pasos --- */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.profile-icon {
    width: 80px;
    height: 80px;
    background-color: #d1d1d1;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #444;
}

.form-control,
.form-select {
    border-radius: 15px !important;
    border: 1px solid #888;
    padding: 12px 15px;
    margin-bottom: 15px;
}

/* --- Verificación (Paso 2) --- */
.verify-card {
    background-color: #e9f4f9;
    border-radius: 30px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.code-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.code-input {
    width: 55px;
    height: 65px;
    border: 1.5px solid #003035;
    border-radius: 12px;
    background: white;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* --- Botones --- */
.btn-custom-dark,
.btn-dark-teal {
    background-color: #003035;
    color: white;
    border-radius: 30px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    border:
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-radius: 10px;
}

button#btn-buscar-matricula {
    padding: 11px;
    margin-bottom: 15px;
    margin-left: 10px;
}