.otm_wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 50px 15px;
  background-color: #e5d5c0;
  overflow: hidden;
}

.otm_wrap .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.otm_wrap .otm_form {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.otm_wrap .otm_form h3 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
  text-align: left;
  margin-left: 150px;
}

.otm_wrap .otm_form ul {
  padding-inline-start: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.otm_wrap .otm_form ul li {
  display: block;
}

.otm_wrap .otm_form ul li label {
  font-size: 18px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin: 0;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  width: 145px;
  text-align: left;
}

.otm_wrap .otm_form ul li input {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 150px);
  font-size: 18px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  padding: 15px;
  height: 42px;
  border: solid 1px rgb(215, 24, 42);
}

.otm_wrap .otm_form button {
  background-color: rgb(215, 24, 42);
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-top: 25px;
  transition: all 250ms ease-in-out;
}

.otm_wrap .otm_form button:hover {
  background-color: rgb(205, 159, 97);
  color: rgb(0, 0, 0);
}

.otm_wrap .form_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.otm_wrap .form_bottom .bottom_img {
  position: absolute;
  bottom: 110px;
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.otm_wrap .form_bottom:after {
  content: "";
  width: 100%;
  height: 150px;
  background-color: #a00702;
  position: absolute;
  bottom: 0;
  left: 0;
}

.otm_wrap .form_bottom .logo {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 0);
  z-index: 2;
  width: 100%;
  max-width: 415px;
}

.otm_wrap .form_bottom .maskot_img {
  width: 375px;
  position: absolute;
  bottom: 210px;
  right: -35px;
  z-index: 3;
}

.otm_wrap .main_logo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  margin-bottom: 50px;
}

.otm_wrap .landscape_logo {
  display: none;
}

@media (orientation: landscape) {
  .otm_wrap {
    padding: 20px 15px;
  }

  .otm_wrap .main_logo {
    display: none;
  }

  .otm_wrap .landscape_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .otm_wrap .landscape_logo img {
    height: 45px;
    object-fit: contain;
    object-position: left;
  }

  .otm_wrap .landscape_logo img:last-child {
    object-position: right;
    height: 38px;
  }

  .otm_wrap .form_bottom .bottom_img {
    bottom: 10px;
  }

  .otm_wrap .form_bottom .logo {
    display: none;
  }

  .otm_wrap .form_bottom .maskot_img {
    bottom: 300px;
  }

  .otm_wrap .otm_form {
    max-width: 70%;
    margin-left: 0;
    padding-left: 25px;
  }

  .otm_wrap .otm_form button {
    margin-left: 135px;
  }
}