.customPageImage {
  max-width: unset;
  position: absolute;
  width: 100%;
  top: 0;
  aspect-ratio: 100/29;
  -o-object-fit: cover;
  object-fit: cover;
}

.formTitle {
  color: var(--base);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-align: center;
}

.sendForm {
  text-align: center;
  font-size: 14px;
  line-height: 35px;
  width: 170px;
  display: inline-grid;
  margin-bottom: 70px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 auto 70px;
}

@media screen and (min-width: 769px) and (max-width: 1105px) {
  #content {
    min-width: unset;
  }
}

@media screen and (max-width: 1100px) {
  #content {
    min-width: unset;
  }

  .customPageImage {
    aspect-ratio: 1/1;
  }

  .centeredContent {
    margin-bottom: 0;
  }

  .sendForm {
    width: 100%;
    height: 45px;
    line-height: 45px;
  }

  .formTitle {
    font-size: 2rem !important;
    margin-bottom: 2.5rem !important;
  }
}