* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  display: flex;
  min-height: 922px;
  height: 100vh;
  background-color: #FEDEE1;
  color: #E64F42;
}

.page-wrapper {
  max-width: 1440px;
  max-height: 922px;
  margin: auto;
  overflow: hidden;
}

.page-content {
  display: flex;
  height: 922px;
}

.img-box {
  width: 50%;
  position: relative;
}

.img-box__bg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-box__bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .2;
  z-index: 1;
}

.img-box__overlay-logo {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 180px;
  z-index: 3;
}

.img-box__overlay-ig {
  position: absolute;
  top: 44%;
  left: 60px;
  width: 225px;
  z-index: 3;
}

.img-box__overlay-ig img {
  width: 100%;
}

.content-box {
  width: 50%;
  margin: auto 0;
  padding: 0 40px;
}

.content-box__header h1 {
  font-weight: 800;
  font-size: 90px;
  line-height: 90px;
  letter-spacing: -2px;
}

.content-box__header h2 {
  margin-top: 15px;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.35;
}

.content-box__form {
  padding-top: 60px;
}

.content-box__form-checkbox-label {
  color: #781F17;
}

.content-box__privacy {
  color: #781F17;
  font-size: 12px;
}

.content-box__privacy a {
  color: #781F17;
}

@media only screen and (max-width: 1150px) {
  .img-box__overlay-logo {
    top: 30px;
    left: 40px;
    width: 175px;
  }

  .img-box__overlay-ig {
    left: 40px;
    width: 190px;
  }

  .content-box {
    padding: 5px 35px;
  }

  .content-box__header h1 {
    font-size: 72px;
    line-height: 72px;
  }

  .content-box__header h2 {
    margin-top: 12px;
    font-size: 25px;
  }

  .content-box__form {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 935px) {
  .content-box__header h1 {
    font-size: 62px;
    line-height: 62px;
  }

  .content-box__header h2 {
    font-size: 23px;
  }

  .content-box__privacy {
    font-size: 10px;
  }

  .content-box__form {
    padding-top: 45px;
  }
}

@media only screen and (max-width: 800px) {
  body {
    height: unset;
  }

  .page-wrapper {
    max-height: 100%;
    overflow: initial;
  }

  .page-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .img-box {
    width: 100%;
  }

  .img-box__overlay-logo {
    top: 40px;
    left: 20px;
    width: 100px;
  }

  .img-box__overlay-ig {
    top: unset;
    bottom: 40px;
    left: 20px;
    width: 220px;
  }

  .img-box__bg-overlay {
    height: 99%;
  }

  .content-box {
    width: 100%;
    padding: 35px 20px 20px 20px;
  }

  .content-box__form {
    padding-top: 25px;
  }
}