* {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
body {
    font-family: Play, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #191919;
    color: #FFFFFF;
}
.container {
    width: 1200px;
    margin: 0 auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    background-color: #0F0F0F;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__logo img {
    display: block;
    height: 24px;
    margin-bottom: 6px;
}
.header__lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}
.header__lang_flag {
    width: 32px;
    height: auto;
}
.header__lang_text {
    font-weight: 600;
}

main {
    display: flex;
    flex: 1;
    padding: 24px 0;
}
main .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.main__wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 500px;
}
.auth__under {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.auth__under_link {
    font-weight: 600;
}
.auth__desc {
    display: flex;
    align-items: center;
    gap: 16px;
}
.auth__desc_right {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.auth__desc_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.auth__desc_label {
    font-weight: 600;
}
.auth__desc_more {
    font-size: 14px;
}
.auth__desc_left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.auth__desc_number {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(239,82,4,0.1);
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid rgba(239,82,4,1);
}
.auth__desc_line {
    width: 1px;
    height: 24px;
    background-color: rgba(239,82,4,1);
    margin: 12px 0;
}
.auth__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.auth__logo > img {
    display: block;
    height: 32px;
}
.auth__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.auth__button_click {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: Play, sans-serif;
    outline: none;
    border: none;
    background-color: rgba(255,85,0,1);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 48px;
}
.auth__qr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 199px;
    height: 199px;
    z-index: 1;
    overflow: hidden;
}
.auth__qr .auth__qr_wrap {
    width: 100%;
    height: 100%;
}
.auth__qr .auth__qr_wrap iframe {
    position: absolute;
    top: -548px;
    right: -199px;
    width: 600px;
    height: 1000px;
    pointer-events: none;
    touch-action: none;
    overflow: hidden;
    z-index: 1;
}
.qr__frame {
    z-index: 0;
}
.qr__first {
    position: absolute;
}
@-moz-document url-prefix() {
    .auth__qr .auth__qr_wrap iframe {
        top: -556px !important;
    }
}
@media screen and (max-width: 1024px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }
}
@media screen and (max-width: 420px) {
    .main__wrapper {
        width: 100%;
    }
}