.form-wrapper {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.form-title {
  text-align: center;
}

.form-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.form-content > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.form-content > div:nth-child(3) {
  display: flex;
  flex-direction: column;
}

.form-content > div:nth-child(1),
.form-content > div:nth-child(2),
.form-content > div:nth-child(3) {
  gap: 1rem;
}

.form-content > div:nth-child(1) > div,
.form-content > div:nth-child(2) > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: .2rem;
}

.form-content input,
.form-content select,
.form-content textarea {
  border-radius: 25px;
  padding: 15px;
  border: 1px solid gray;
}

.button-container {
  padding: 2rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.form-content > div:nth-child(3) select {
  -webkit-appearance: none;
  appearance: none;
}


/* Extra Large Screens (Large Desktops) */
@media only screen and (min-width: 1441px) {

}

/* Large Screens (Desktops) */
@media only screen and (min-width: 1025px) and (max-width: 1440px) {

}

/* Medium Screens (Large Tablets) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {

}

/* Small Screens (Tablets en Mobile) */
@media only screen and (min-width: 577px) and (max-width: 768px) {
  .form-content > div {
    flex-direction: column;
  }
  .button-container {
    flex-direction: column;
  }
}

/* Extra Small Screens (Mobile) */
@media only screen and (max-width: 576px) {
  .form-content > div {
    flex-direction: column;
  }
  .button-container {
    flex-direction: column;
  }
}
