#contact-us {}

#contact-us>.contact-us-title {
  margin: 0 auto;
  width: fit-content;
}

#contact-us>.form-wrapper>form>div>input[type=submit] {
  display: block;
  margin: 0 auto;
}

#contact-us>.form-wrapper>form>div>button {
  display: block;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

#contact-us form button {
  background-color: transparent;
  border: 4px solid purple;
  border-radius: 2em;
  color: white;
  width: fit-content;
  padding: 0 1rem;
  transition: transform 0.25s ease;
}

 #contact-us form button:hover {
  color: purple;
  transform: scale(1.1) perspective(1px);
}

#contact-us>.form-wrapper>form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact-us>.form-wrapper>form>div {
  width: 60%;
}

@media (max-width: 950px) {
  #contact-us>.form-wrapper>form>div {
    width: 75%;
  }
}

@media (max-width: 768px) {
  #contact-us>.form-wrapper>form>div {
    width: 90%;
  }

