/* Sección principal */
.producto-section {
  max-width: 700px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 24px; 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Título */
.producto-section h1 {
  text-align: center;
  margin-bottom: 32px;
  color: #333;
  font-size: 28px;
}

/* Etiquetas */
.producto-section label {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

/* Campos de entrada */
.producto-section input[type="text"],
.producto-section input[type="email"],
.producto-section input[type="password"],
.producto-section input[type="number"],
.producto-section input[type="tel"],
.producto-section input[type="direccion"],
.producto-section select {
  width: 100%;
  padding: 12px 20px;
  margin-top: 6px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 100px;
  font-size: 15px;
  font-family: inherit;
  background-color: #f9f9f9;
  transition: border-color 0.3s;
  box-sizing: border-box;
  height: 45px;
}

.producto-section input:focus,
.producto-section select:focus {
  border-color: #007bff;
  outline: none;
}

/* Botones */
.producto-section button[type="submit"] {
  width: 100%;
  padding: 14px;
  margin-top: 24px;
  background-color: #007bff;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.producto-section button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Enlace "Cancelar" */
.producto-section a.cancelar {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px;
  margin-top: 12px;
  background-color: transparent;
  border: 1.5px solid #007bff;
  color: #0056b3;
  text-decoration: none;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}

.producto-section a.cancelar:hover {
  background-color: #007bff;
  border: 2px solid #0056b3;
  color: #ffffff;
}

.producto-section button[type="submit"] {
  width: 100%;
  padding: 14px;
  margin-top: 24px;
  background-color: #007bff;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.producto-section button[type="submit"]:hover {
  background-color: #0056b3;
}
