/* Fondo del modal (overlay) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
background-color: rgba(49, 43, 5, 0.426); /* naranja transparente */
}

/* Contenido del modal */
.modal-content {
  background-color: #fff8f0; /* fondo blanco con tintes naranja muy suaves */
  margin: auto;
  padding: 20px 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
  font-family: Arial, sans-serif;
}

/* Botón para cerrar */
.close {
  color: #ff6d00; /* naranja oscuro */
  font-size: 28px;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff9900; /* naranja claro */
}

/* Título del modal */
.modal-content h2 {
  margin-top: 0;
  color: #e65100; /* naranja oscuro */
  font-weight: bold;
  text-align: center;
}

/* Contenedor del formulario */
.form-container {
  background-color: #fff8f0; /* fondo suave */
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
  font-family: Arial, sans-serif;
}

/* Etiquetas */
form label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: #ff6d00; /* naranja oscuro */
}

/* Inputs */
form input {
  width: 100%;
  padding: 8px 10px;
  margin-top: 6px;
  margin-bottom: 12px;
  border: 2px solid #ff9900; /* borde naranja */
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}

form input:focus {
  border-color: #ff6d00;
  box-shadow: 0 0 6px #ff9900;
}

/* Botón enviar */
button {
  background-color: #ff9900;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  font-size: 1.1rem;
  margin-top: 10px;
}

button:hover {
  background-color: #e65100;
  transform: scale(1.05);
}

/* Lista de errores o mensajes (si los usas) */
ul {
  margin-top: 15px;
  padding-left: 20px;
  color: #ff6d00;
  font-weight: 600;
}
