.contact {
  max-width: var(--container-size);
  width: 90%;
  gap: 110px;
  padding-top: 80px;
  padding-bottom: 90px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  overflow: clip;
}

.contact__form {
  width: 50%;
}

.contact__form-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact__form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.contact__form-text {
  color: rgb(var(--contact-color-text));
  font-size: 16px;
  font-weight: 400;
}

.contact__form-field {
  font-family: var(--primary-font);
  font-size: 15px;
  height: 50px;
  border-radius: 5px;
  padding-left: 15px;
  border: 1px solid rgb(184, 192, 204);
  line-height: 50px;
}
.contact__form-message {
  height: 100px;
}

.contact__form-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: rgb(var(--background-color-footer));
  border-radius: 4px;
  border: none;
  width: 150px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  color: rgb(var(--light-color));
  font-size: 16px;
  transition: 300ms ease all;
}

.contact__form-button:hover {
  background-color: rgb(var(--red-color));
}

.contact__image {
  width: 50%;
}

@media screen and (max-width: 900px) {
  .contact {
    max-width: 90%;
    padding-top: 30px;
    padding-bottom: 20px;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .contact__form {
    width: 100%;
  }

  .contact__form-title {
    font-size: 28px;
  }

  .contact__form-detail {
    width: 100%;
  }

  .contact__image {
    width: 100%;
  }

  .contact__form-button {
    margin-bottom: 30px;
  }

  .contact {
    gap: 40px;
  }
}
