/* ===== BODY ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f7fa;
  margin: 0;
  padding: 30px;
  color: #333;
}

/* ===== HEADER ===== */
header {
  background: #1e3a8a;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

header h1 {
  color: white;
  text-align: center;
  margin: 0;
  font-size: 32px;
}

/* ===== CONTENEDOR ===== */
.contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

/* ===== FORMULARIO ===== */
.formulario {
  width: 650px;
  background: white;
  padding: 50px;
  border-radius: 14px;
  font-size: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ===== TÍTULO ===== */
.formulario h2 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
  font-size: 30px;
}

/* ===== FIELDSET ===== */
.formulario fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* ===== LEGEND ===== */
.formulario legend {
  font-size: 20px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 500;
}

/* ===== BLOQUES ===== */
.formulario div {
  margin-bottom: 22px;
}

/* ===== LABELS ===== */
.formulario label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 17px;
}

/* ===== INPUTS ===== */
.formulario input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 17px;
}

.btn-continuar {
  background: #2563eb;
  color: white;
  border: none;
  padding: 14px 20px;
  width: 250px;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;

  display: block;
  margin-left: auto;

  text-decoration: none;
  text-align: center;
}

.btn-continuar:hover {
  background: #1d4ed8;
}

.formulario h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #1e3a8a;
}

.formulario p {
  margin: 6px 0;
}

.acciones {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn-secundario {
  background: #e5e7eb;
  color: #111;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.estado-actual {
  background: #e0e7ff;
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
}

.estado-actual h3 {
  margin-top: 5px;
  color: #1e3a8a;
}

/* Línea de progreso */
.progreso {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  gap: 8px;
}

.paso {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  background: #e5e7eb;
}

.paso.completado {
  background: #22c55e;
  color: white;
}

.paso.activo {
  background: #2563eb;
  color: white;
  font-weight: 600;
}

/* Historial */
.historial {
  margin-top: 15px;
  padding-left: 18px;
}

.historial li {
  margin-bottom: 6px;
}
