form {
  display: flex;
  flex-direction: column;
  margin: auto 3em;
  padding: 0;
  align-items: center;
}

@media only screen and (max-width: 600px) {
  form {
    margin: auto;
  }

  form p,
  form div,
  form div label,
  form label,
  form input,
  form .helptext,
  button {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  button {
    font-size: 1.5rem;
  }
}

form p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 10px 0 0 0;
  width: 100%;
}

form div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: center;
}

form div label {
  display: flex;
  margin-bottom: 5px;
  padding-right: 20px;
}

form label {
  display: flex;
  margin-bottom: 5px;
}

form input,
form select,
form textarea {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 5px;
  margin-bottom: 10px;
  min-width: 80%;
  font-family: "moon_flowerregular", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: rgba(255,255,255,0.1);
  height: 4vh;
}

form p input[type="checkbox"] {
  /* Your styles here */
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

form div input[type="checkbox"] {
  /* Your styles here */
  width: auto;
  min-width: 0;
  height: 70%;
  margin-right: 30px;
}

form .helptext {
  display: none;
  font-size: 12px;
  color: #999;
}

button {
  margin-top: 0.5em;
  font-family: moon_flowerregular, serif;
  display: inline-block;
  padding: 10px 20px;
  color: #fff; /* Text color */
  background-color: transparent; /* Clear background */
  border: 4px solid #fff; /* Border color */
  border-radius: 5px;
  text-decoration: none;
  transition: all 1s ease;
  font-size: 2rem;

}
button:hover {
  background-color: #fff; /* Background color on hover */
  color: #000; /* Text color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
