.form {
  font-size: 1.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem;
  border-radius: 5px;
  background: linear-gradient(
    49deg,
    #65c27b -0.92%,
    #6fd38b 41.01%,
    #b0f8c9 91.61%
  );
}

.form__input {
  width: 100%;
  padding: 1rem;
  border-radius: 2rem;
  border: none;
  resize: none;
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form__submit {
  padding: 1rem;
  border-radius: 2rem;
  border: none;
  background-color: var(--b-button);
  color: white;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .form {
    padding: 2rem 1rem;
  }
}
