@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

.form-container {
  background-color: transparent;
  padding: 2px;

  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  color: white;
  margin-top: 13px;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 0.9rem;
}

input {
  padding: 10px;
  font-size: 0.8rem;
  border-radius: 4px;
  border: 1px solid #ddd;
  height: 2rem;
}

.help {
  height: 120px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: Arial, sans-serif;
  resize: vertical;
}

.buttonforms {
  margin-top: 10px;
  background-color: rgb(26, 216, 107);
  font-size: 1.2rem;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.divclear {
  width: 100%;
  display: flex;
  justify-content: end;
}

.clearButton {
  margin-top: 6px;
  font-style: italic;
  text-decoration: underline;
  background-color: rgba(255, 255, 255, 0);
  font-size: 0.8rem;
  color: white;
  padding: 5px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  width: 20%;
  right: 10;
}

.buttonforms:hover {
  background-color: rgb(6, 158, 65);
  transition-duration: 0.5s;
}

#responseMessage {
  margin-top: 20px;
  font-size: 1.2rem;
  text-align: center;
}

.error-message {
  text-shadow: rgb(0, 0, 0) 0.1em 0.1em 0.6em;
  margin-top: 4px;
  color: rgb(255, 0, 0);
  font-size: 11px;
}

#responseMessage {
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
  color: white;
}