body {
  background-color: rgb(242,232,220);
}
.fontRegText {
  font-family: "Libertinus Serif", serif;
  font-weight: 400;
  font-style: normal;
  color: rgb(113,108,96);
}
.fontTitle {
  font-family: "Libertinus Serif", serif;
  font-weight: 400;
  font-style: normal;
  color: rgb(209,136,99);
  font-size: 2.2em;
}
.fontText {
  font-family: "Libertinus Serif", serif;
  font-style: normal;
  font-weight: 500;
  color: rgb(209,136,99);
}
textarea {
  background-color: rgb(223,236,233);
}
::placeholder {
  font-family: Arial, sans-serif;
  font-size: 1em;
  color: #a0a0a0;
  font-style: italic;
}
button {
  background-color: rgb(207,230,228);
  color: rgb(94,110,105);
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 30px; /* Bordes más redondeados (estilo "píldora") */
  font-family: "Libertinus Serif", serif;
  font-style: normal;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
  transition: all 0.3s ease; /* Transición suave para todos los cambios */
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* Oculto por defecto */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: rgb(242,232,220);
  color: rgb(113,108,96);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 400px;
}

/* Estilos para el botón */
.close-button {
  cursor: pointer;
  background-color: rgb(207,230,228);
  color: rgb(94,110,105);
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 30px; /* Bordes más redondeados (estilo "píldora") */
  font-family: "Libertinus Serif", serif;
  font-style: normal;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
  transition: all 0.3s ease; /* Transición suave para todos los cambios */
}