.download-container {
  width: 100%;
  min-height: 100vh;
  padding: 108px 20px 40px;
  background: url("../images/download-bg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}

.download-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.download-container .h2 {
  position: relative;
  z-index: 10;
  text-align: center;
  font-size: 28px;
  line-height: 1;
  padding-bottom: 20px;
}

#download-request-form {
  position: relative;
  z-index: 10;
  width: min(560px, 100%);
  margin: 0 auto;
  padding-bottom: 24px;
}

#download-request-form > p.contact-note {
  width: 100%;
  margin: 0 0 4px;
  padding-left: 202px;
  font-size: 14px;
  line-height: 1.45;
  color: #1f1f1f;
}

#download-request-form button {
  margin: 18px auto 0;
  display: block;
  width: 220px;
  height: 42px;
  line-height: 42px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  outline: none;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#download-request-form .item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  column-gap: 22px;
  width: 100%;
  margin: 12px auto;
}

#download-request-form .item span {
  position: relative;
  display: block;
  white-space: nowrap;
  text-align: right;
  font-size: 15px;
  line-height: 1.35;
  color: #111;
}

#download-request-form .item:first-of-type span::after,
#download-request-form .item:last-of-type span::after {
  content: "*";
  position: absolute;
  top: 1px;
  right: -10px;
}

#download-request-form .item input,
#download-request-form .item:last-of-type > div > textarea {
  width: 100%;
  border: 1px solid #5e5e5e;
  outline: none;
  background: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  color: #111;
}

#download-request-form .item input {
  height: 40px;
  padding: 0 10px;
  line-height: 40px;
}

#download-request-form .item:last-of-type {
  align-items: flex-start;
  margin-bottom: 4px;
}

#download-request-form .item:last-of-type > div {
  width: 100%;
}

#download-request-form .item:last-of-type > div > textarea {
  height: 92px;
  padding: 8px 10px;
  line-height: 1.45;
  resize: none;
}

#download-request-form .item:last-of-type > div > textarea::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#download-request-form .item:last-of-type > div > p.field-note {
  margin-top: 6px;
  color: #919191;
  font-size: 12px;
  line-height: 1.45;
}

@media screen and (max-width: 750px) {
  .download-container {
    padding: 110px 20px 60px;
  }

  .download-container .h2 {
    font-size: 28px;
    padding-bottom: 24px;
  }

  #download-request-form {
    width: min(460px, 100%);
  }

  #download-request-form > p.contact-note {
    padding-left: 0;
    margin: 6px 0;
    font-size: 15px;
  }

  #download-request-form .item {
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin: 16px auto;
  }

  #download-request-form .item span {
    text-align: left;
    font-size: 16px;
  }

  #download-request-form .item:first-of-type span::after,
  #download-request-form .item:last-of-type span::after {
    position: relative;
    top: 0;
    right: auto;
    margin-left: 4px;
  }

  #download-request-form button {
    width: 100%;
  }
}
