
.formulario-bonos h2 {
  font-size: 24px;
  color: #2828ff;
  text-align: center;
  margin-bottom: 30px;
}

.formulario-campos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.campo {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}

.campo label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.campo input {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background: #ffff;
}

.formulario-boton {
  text-align: center;
  margin-top: 30px;
}

.formulario-boton input[type="submit"] {
  background: #2828ff;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.formulario-boton input[type="submit"]:hover {
  background: #1a1acc;
}

/* RESPONSIVE 1 COLUMNA EN TABLETS Y CELULARES */
@media (max-width: 768px) {
  .campo {
    flex: 1 1 100%;
  }
}
