main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 0;
}

.container-bg {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.content-bg {
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content__img {
  max-width: 250px;
  height: 350px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

@media screen and (max-width: 900px) {
  main {
    max-height: 100vh;
  }
  .content-bg {
    height: 720px;
    overflow: hidden;
  }
}

.formFooter {
  opacity: 0;
}