body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffe6f0;
    margin: 0;
    padding: 0;
  }
  
  .formulario-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .formulario-container h1 {
    text-align: center;
    color: #d63384;
    margin-bottom: 25px;
  }
  
  .formulario-producto {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin: 10px 0 5px;
    color: #d63384;
    font-weight: 600;
  }
  
  input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
  }
  
  textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  button {
    margin-top: 20px;
    background-color: #ff99c8;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #ff66a3;
  }
  
  .boton-volver {
    display: inline-block;
    margin: 20px;
    padding: 10px 20px;
    background-color: #ff99c8;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s;
  }
  
  .boton-volver:hover {
    background-color: #ff66a3;
  }
  