.contact {
  display: flex;
  min-height: 100%;
}

.contact form {
  display: flex;
  flex-direction: column;
  padding: 0 2em;
  gap: 20px;
  max-width: 500px;
  margin: auto;
  background-color: #fff;
  border-radius: 4px;
  color: #333;
  padding: 2em;
}

.contact input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contact button {
  color: white !important;
  background-color: #13878a !important;
}

@media (max-width: 991px) {
  .contact {
    padding: 0;
    width: 100%;
  }
  .contact form {
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}
