/* cSpell:disable */
/*% // %------------------ adapt value ------------------% // %*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  background-repeat: no-repeat;
}

*,
*:before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: clip;
  font-family: play;
}

.main {
  width: 100dvw;
  height: 100dvh;
  background-image: url("/img/bg/bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
.main::before {
  content: "";
  display: block;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1F003F), to(transparent));
  background-image: linear-gradient(#1F003F, transparent);
  height: 445px;
  width: 100%;
  position: absolute;
}
.main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding-inline: 16px;
}
.main__logo {
  width: 440px;
  height: 98px;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .main__logo {
    width: max(57.292vw, 300px);
    height: max(12.76vw, 67px);
  }
}
@media (max-width: 577px) {
  .main__logo {
    max-width: 100%;
    height: auto;
  }
}
.main__text {
  font-size: 24px;
  color: #fff;
  max-width: 447px;
  text-align: center;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .main__text {
    font-size: max(3.125vw, 16px);
    margin-bottom: max(6.771vw, 36px);
  }
}
.main__code {
  width: 150px;
  height: 150px;
  margin-bottom: 52px;
}
@media (max-width: 768px) {
  .main__code {
    display: none;
  }
}
.main__button {
  font-size: 18px;
  font-weight: 700;
  padding-inline: 92px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 53px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  border-radius: 6px;
}