.contact-form {
  width: 600px;
  height: 900px;
  margin: 0 auto;
  margin-top: 115px;

  background: #eaeaea;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.form-title {
  width: 100%;
  text-align: center;
  padding-top: 45px;
  margin-bottom: 50px;

  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */

  color: #000000;
}

form {
  display: flex;
  flex-direction: column;
  width: 82%;

  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

form label {
  margin-top: 28px;
  font-size: 24px;
  line-height: 29px;

  color: #000000;
}

form input {
  margin-top: 15px;

  height: 50px;

  border: 1.5px solid #d1d1d1;
  border-radius: 2px;

  padding-left: 20px;
  font-size: 18px;

  font-family: "poppins";
}

.message {
  margin-top: 15px;

  height: 150px;
  max-width: 492px;
  min-width: 75%;
  max-height: 210px;
  padding-left: 20px;
  padding-top: 20px;
  font-size: 18px;

  font-family: "poppins";
}

.submit {
  height: 60px;
  margin-top: 40px;

  background: #9d002a;
  border-radius: 3px;
  border: none;

  font-size: 24px;

  color: #ffffff;

  cursor: pointer;
}

@media screen and (max-width: 720px) {
  .contact-form {
    width: 300px;
    height: 850px;
    margin: 0 auto;
    margin-top: 115px;

    background: #eaeaea;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
  }

  form input {
    margin-top: 15px;

    height: 50px;

    border: 1.5px solid #d1d1d1;
    border-radius: 2px;

    padding-left: 20px;
    font-size: 18px;

    font-family: "poppins";
  }

  .message {
    margin-top: 15px;

    height: 150px;
    max-width: 100%;
    min-width: 75%;
    max-height: 210px;
    padding-left: 20px;
    padding-top: 20px;
    font-size: 18px;

    font-family: "poppins";
  }

  .form-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
