/* Fuente general */
body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f1f8f9;
  color: #333;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  font-family: 'Winky Rough', cursive;
  font-size: 2.5em;
  color: #0e6e71;
}

/* Estilo del formulario */
form {
  max-width: 800px;
  margin: auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 128, 128, 0.2);
}

fieldset {
  border: 2px solid #0e6e71;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  background-color: #f9fefe;
}

legend {
  font-weight: bold;
  color: #0e6e71;
  font-size: 1.2em;
}

/* Etiquetas y campos */
label {
  display: inline-block;
  width: 180px;
  margin-bottom: 10px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="file"],
select,
textarea {
  width: calc(100% - 200px);
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 1em;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 8px;
}

/* Botones */
button {
  background-color: #0e6e71;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0b5355;
}

/* Ajustes para radios y checkboxes */
p {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #0e6e71;
}

textarea {
  resize: vertical;
}
