.form-container {
  box-shadow: var(--shadow-gray);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  box-shadow: var(--shadow-gray);
  margin-bottom: 0.5em;
  outline: 0px;
  border: 0px;
  padding: 1em;
  border-radius: 10px;
}
.form-submit-btn {
  outline: 0px;
  border: 0px;
  padding: 0.5em;
  border-radius: 6px;
  font-size: 1em;
  background-image: linear-gradient(to right, #41cab6 -3.77%, #00adee 114.05%);
  box-shadow: 3px 6px 30px rgb(0 164 212 / 55%);
  color: var(--white-button);
  margin-bottom: 1em;
  cursor: pointer;
}
