.form-download--wrapper {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
}
.form-download--wrapper.show {
  display: flex;
}
.form-download--content {
  margin: auto;
  width: 80%;
  background-color: var(--beige);
  color: var(--black);
  padding: 34px 34px;
  border-radius: 15px;
  position: relative;
}
/* .form-download--content input {
  height: 33px;
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--black);
  width: 100%;
}
.form-download--content input::placeholder {
  color: black;
} */

.closure-btn-modal {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-50%, 50%);
  cursor: pointer;
}
.form-download--content h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 16px;
}
.form-download--content p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 35px;
}
.self-center {
  align-self: center;
  justify-self: center;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .form-download--content {
    padding: 54px 64px;
  }
  .form-download--content h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 16px;
  }
  .form-download--content p {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .form-download--content {
    width: 60%;
  }
}
@media (min-width: 1280px) {
  .form-download--content {
    width: 40%;
  }
}
@media (min-width: 1536px) {
}
