.form {
  display: flex;
  justify-content: center;
  padding-top: 169px;
  padding-bottom: 220px;
}

.form form {
  display: flex;
  flex-direction: column;
}

.form form h2 {
  font: 700 42px 'Roboto';
  letter-spacing: -1.6px;
  color: var(--title);
  margin-bottom: 48px;
}

.form form input, .form form textarea {
  border: 1px solid #000000;
  border-radius: 12px;
  width: 604px;
  margin-bottom: 31px;
  padding-left: 14px;
}

.form form input {
  height: 70px;
}

.form form textarea {
  height: 213px;
  padding-top: 21px;
}

.form form button {
  width: 193px;
  height: 51px;
  background: var(--accent);
  font: 700 18px 'Roboto';
  color: #000;
}

.form-image {
  margin-left: 60px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 66px;
}

.form-image img {
  width: 553px;
  height: 585px;
}

@media(max-width: 1200px) {
  .form {
    padding-top: 110px;
    padding-bottom: 90px;
  }

  .form form h2 {
    font-size: 32px;
  }

  .form form input, .form form textarea {
    width: 490px;
  }

  .form form input {
    height: 60px;
  }

  .form-image img {
    width: 400px;
    height: 504px;
  }
}

@media(max-width: 768px) {
  .form form {
    align-items: center;
  }
  
  .form-image img {
    display: none;
  }

  .form form textarea {
    margin-bottom: 40px;
  }
}

@media(max-width: 430px) {
  .form {
    padding-top: 80px;
  }

  .form-image {
    display: none;
  }

  .form form input, .form form textarea {
    width: 100%;
  }
}