
.progress-container {
    width: 100%;
    background: #e0e2e3; /* Fondo gris para el progreso */
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}

.progress-bar {
    height: 10px;
    background: #4caf50;
    width: 0;
    transition: width 0.3s ease;
    border-radius: 5px;
}

.progress-text {
    position: absolute;
    right: 10px;
    top: -20px;
    font-size: 12px;
    color: #4caf50;
    font-weight: bold;
}

/* Botones inline y con estilo */
.btn-prev, .btn-next {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 5px;
    background-color: white;
    color: #334da9;
    border: 2px solid #334da9;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.btn-prev:hover, .btn-next:hover {
    background-color: #334da9;
    color: white;
}

/* Ocultar el botón de enviar por defecto */
[type="submit"] {
    display: none;
}

.step:last-child [type="submit"] {
    display: inline-block; /* Mostrar "Enviar" solo en la última etapa */
}
.error {
    border: 2px solid red;
    background-color: #ffe6e6;
}

