html {
  width: 100%;
  height: 100%;
}

body {
  box-sizing: border-box;
  place-content: normal;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 40px;
  font-family: Poppins, sans-serif;
  display: flex;
  overflow: hidden;
}

.wrapper {
  background: linear-gradient(to right, #f1ebfd, #ede4ff, #d7c3ff);
  border-radius: 28px;
  width: 100%;
  padding: 80px;
  position: relative;
}

.main-container {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
  position: relative;
}

.logo-container img {
  width: 210px;
  height: 48px;
}

.girl-container {
  z-index: 0;
  position: absolute;
  bottom: -7px;
  right: 0;
}

.girl-container img {
  max-height: calc(100vh - 80px);
}

.redirect-container {
  max-width: 553px;
}

.redirect-container .title {
  letter-spacing: -.41px;
  margin-top: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 82px;
}

.redirect-container .title span {
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(#7f36f3, #ed0d80);
  -webkit-background-clip: text;
}

.redirect-container p {
  letter-spacing: -.41px;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
}

.btn {
  letter-spacing: -.41px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(#a77aff, #6d2ceb);
  border: 1px solid #8f5af7;
  border-radius: 16px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 292px;
  max-height: 70px;
  margin-top: 40px;
  padding: 20px 64px;
  font-family: SF Pro Text, SF Pro Icons, Apple WebExp Icons Custom, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  box-shadow: 0 9px 34px #b28aff99;
}

.logo-mob, .girl-mob {
  display: none;
}

@media screen and (width <= 1300px) {
  body {
    padding: 16px;
  }

  .wrapper {
    padding: 24px;
  }
}

@media screen and (width <= 1100px) {
  .logo-mob {
    display: block;
  }

  .logo-desktop {
    display: none;
  }

  .logo-container img {
    width: 140px;
    height: 32px;
  }

  .redirect-container .title {
    letter-spacing: -.41px;
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 48px;
  }

  .redirect-container p {
    letter-spacing: -.41px;
    margin-top: 0;
    font-size: 20px;
    line-height: 34px;
  }

  .redirect-container {
    max-width: 326px;
  }

  .btn {
    margin-top: 20px;
    padding: 16px 64px;
    font-size: 20px;
    line-height: 28px;
  }
}

@media screen and (width <= 1024px) and (orientation: portrait) {
  .wrapper {
    height: min-content;
    padding: 0;
  }

  body {
    height: min-content;
    overflow: auto;
  }

  .main-container {
    height: unset;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    position: relative;
  }

  .girl-container {
    border-bottom-right-radius: 28px;
    border-bottom-left-radius: 28px;
    width: 100%;
    height: 100%;
    position: static;
  }

  .logo-container img {
    width: unset;
    height: unset;
  }

  .girl-container img {
    object-fit: fill;
    object-position: unset;
    max-height: unset;
    border-bottom-right-radius: 28px;
    border-bottom-left-radius: 28px;
    width: 100%;
    height: 100%;
  }

  .logo-container {
    padding: 0;
  }

  .btn {
    max-width: unset;
    width: 100%;
    padding: 16px 0;
    font-size: 20px;
    line-height: 28px;
  }

  .wrapper {
    justify-content: space-between;
    width: 100%;
  }

  .redirect-container {
    text-align: center;
    max-width: 400px;
    margin-top: 24px;
    padding: 0;
  }

  .redirect-container .title {
    letter-spacing: -.41px;
    margin-top: 8px;
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
  }

  .wrapper {
    flex-direction: column;
    display: flex;
  }

  .logo-desktop, .girl-desktop {
    display: none;
  }

  .logo-mob, .girl-mob {
    display: block;
  }
}

@media screen and (width <= 425px) and (orientation: portrait) {
  .girl-container img {
    object-fit: fill;
    object-position: 0 0px;
    max-height: 100%;
  }

  .redirect-container {
    margin-top: 0;
  }

  .redirect-container .title {
    max-height: 84px;
    margin-bottom: 0;
    line-height: 36px;
  }

  .redirect-container p {
    margin-top: 8px;
    line-height: 30px;
  }

  .btn {
    margin-top: 0;
    font-size: 21px;
  }

  .redirect-container .title {
    font-size: 28px;
  }

  .redirect-container p {
    font-size: 16px;
  }
}

@media screen and (width <= 360px) and (orientation: portrait) {
  .logo-container img {
    width: 120px;
    height: 23px;
  }

  .redirect-container .title {
    margin-top: 8px;
    line-height: 37px;
  }

  .redirect-container p {
    line-height: 23px;
  }

  .btn {
    padding: 10px 0;
  }

  .girl-container img {
    object-fit: fill;
    object-position: unset;
    max-height: 100%;
  }

  body {
    padding: 10px;
  }
}

@media screen and (height <= 460px) and (orientation: landscape) {
  .logo-container img {
    width: 115px;
    height: 25px;
  }

  .redirect-container .title {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 36px;
  }

  .redirect-container p {
    font-size: 16px;
    line-height: 20px;
  }

  .btn {
    margin-top: 10px;
    padding: 12px 64px;
    font-size: 20px;
    line-height: 28px;
  }

  .wrapper {
    padding: 18px;
  }
}

@media screen and (height <= 325px) and (orientation: landscape) {
  body {
    padding: 6px;
  }
}
/*# sourceMappingURL=index.a6d9c042.css.map */
