.loading[data-v-3ba7891e] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    background: rgba(0, 0, 0, 0.25);
}

.relative[data-v-3ba7891e] {
    margin: auto;
    display: flex;
    position: relative;
}

@keyframes scale-3ba7891e {
    0% {
        transform: scale(0);
    }
}

@keyframes translate-3ba7891e {
    to {
        transform: translate(200%);
    }
}

.ellipsis[data-v-3ba7891e] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--red-color);
}

.dark-blue .ellipsis[data-v-3ba7891e] {
    background: var(--blue-color);
}

.ellipsis[data-v-3ba7891e]:nth-child(n + 3) {
    margin-left: 0.5rem;
}

.ellipsis[data-v-3ba7891e]:nth-child(1) {
    position: absolute;
    animation: scale-3ba7891e 0.6s infinite;
}

.ellipsis[data-v-3ba7891e]:nth-child(2),
.ellipsis[data-v-3ba7891e]:nth-child(3) {
    animation: translate-3ba7891e 0.6s infinite;
}

.ellipsis[data-v-3ba7891e]:nth-child(4) {
    animation: scale-3ba7891e 0.6s infinite reverse;
}

@media screen and (min-width: 1200px) {
    .ellipsis[data-v-3ba7891e] {
        width: 0.25rem;
        height: 0.25rem;
    }
    .ellipsis[data-v-3ba7891e]:nth-child(n + 3) {
        margin-left: 0.25rem;
    }
}

html {
    box-sizing: border-box;
    line-height: 1.2;
    -webkit-text-size-adjust: none;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.2;
    margin: 0;
    outline: none;
}

:root {
    --red-color: #d43831;
    --blue-color: #0f7ce4;
    --bg-color: #fafafa;
    --main-bg-color: #fff;
    --input-bg-color: #fff;
    --error-text-color: #ff4d4f;
    --text-1-color: #2a2d2f;
    --text-2-color: #676e76;
    --text-3-color: rgba(0, 0, 0, 0.25);
    --line-color: #d9d9d9;
}

.dark,
.dark-blue {
    --bg-color: #1b1119;
    --main-bg-color: #242024;
    --input-bg-color: #352f35;
    --text-1-color: #fff;
    --text-2-color: #999;
    --text-3-color: #ccc;
    --line-color: #444;
}

html {
    height: 100%;
    font-size: 312.5%;
}

body {
    height: 100%;
    background: var(--bg-color) url(../Images/bg-light-mobile.2c1194ef.png) center/cover repeat;
    font-size: 0.32rem;
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dark body,
.dark-blue body {
    background-image: none;
}

#app {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

input,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

main {
    width: 100%;
    margin: 0.6rem auto;
}

@media screen and (min-width: 1200px) {
    html {
        font-size: 625%;
    }
    body {
        background-image: url(../Images/g-light-pc.e161bf84.html);
    }
    .dark body {
        background-image: url(../Images/g-dark-pc.f9fda9ae.html);
    }
    main {
        margin: 0.3rem auto;
        max-width: 6.2rem;
    }
}

form {
    padding: 0 0.4rem;
    display: flex;
    flex-direction: column;
}

h2 {
    margin-bottom: 0.32rem;
    color: var(--text-1-color);
    font-size: 0.36rem;
    font-weight: 700;
    text-align: center;
}

.field {
    position: relative;
}

.field.required:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.1rem;
    height: 0.34rem;
    content: "*";
    color: var(--red-color);
    font-size: 0.22rem;
    transform: translate(-100%) translate(-0.06rem);
}

.field+.field {
    margin-top: 0.24rem;
}

.error .message {
    margin-top: 0.08rem;
    padding-left: 0.28rem;
    background: url(../Images/exclamation.d4037144.html) center left/.24rem no-repeat;
    color: var(--error-text-color);
    font-size: 0.22rem;
    line-height: 0.34rem;
}

.password {
    position: relative;
}

.peek {
    position: absolute;
    top: 0;
    right: 0.24rem;
    bottom: 0;
    width: 0.32rem;
    padding: 0;
    border: none;
    background: center/contain no-repeat;
}

input[type="text"]+.peek {
    background-image: url(../Images/eye-invisible.7d9f2af9.html);
}

input[type="password"]+.peek {
    background-image: url(../Images/eye-visible.a840a7b6.html);
}

.dark input[type="text"]+.peek {
    background-image: url(../Images/eye-invisible-dark.c4e8f6f1.html);
}

.dark input[type="password"]+.peek {
    background-image: url(../Images/eye-visible-dark.d2aecc97.html);
}

.verification {
    display: flex;
}

.verification button {
    margin-left: 0.08rem;
    flex: 0 0 auto;
}

.mobile {
    display: flex;
}

.mobile input {
    flex: 1 0 auto;
}

.mobile input,
.mobile select {
    width: auto;
}

input {
    background: var(--input-bg-color);
}

input::placeholder {
    color: var(--text-3-color);
}

select {
    background: var(--input-bg-color) url(../Images/down.c7427533.html) right 0.24rem center/.32rem no-repeat;
}

.dark select {
    background-image: url(../Images/down-dark.d8315a5f.html);
}

input,
select {
    width: 100%;
    display: block;
    padding: 0.24rem;
    border: 0.01rem solid var(--line-color);
    border-radius: 0.02rem;
    color: var(--text-1-color);
    font-size: 0.26rem;
    line-height: 0.4rem;
}

input[type="password"],
select[type="password"] {
    padding-right: 0.56rem;
}

input:focus,
input:hover,
select:focus,
select:hover {
    border-color: var(--red-color);
    box-shadow: 0 0 0 0.02rem rgba(212, 56, 49, 0.2);
}

.error input,
.error select {
    border-color: var(--error-text-color);
}

.hint {
    margin-top: 0.08rem;
    color: var(--text-2-color);
    font-size: 0.22rem;
}

hr {
    margin: 0.24rem 0;
    border: none;
    height: 0.01rem;
    background: var(--line-color);
    opacity: 0.25;
}

button {
    padding: 0.24rem;
    border-radius: 0.02rem;
    font-size: 0.26rem;
    line-height: 0.4rem;
}

button[type="submit"] {
    width: 100%;
}

.secondary {
    background: var(--main-bg-color);
    border: 0.01rem solid var(--line-color);
    color: var(--text-2-color);
}

.secondary:focus,
.secondary:hover {
    border-color: var(--red-color);
    box-shadow: 0 0 0 0.02rem rgba(212, 56, 49, 0.2);
    color: var(--red-color);
}

.primary {
    background: var(--red-color);
    border: 0.01rem solid var(--red-color);
    color: #fff;
}

.primary:focus,
.primary:hover {
    box-shadow: 0 0 0 0.02rem rgba(212, 56, 49, 0.2);
}

.agreement {
    margin: 0.24rem 0 0.4rem;
    color: var(--text-3-color);
    font-size: 0.22rem;
    text-align: center;
}

a {
    color: var(--blue-color);
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 1200px) {
    form {
        padding: 0.6rem 1rem;
        background: var(--main-bg-color);
    }
    h2 {
        font-size: 0.16rem;
    }
    .field.required:before {
        font-size: 0.12rem;
    }
    .field+.field {
        margin-top: 0.16rem;
    }
    .error .message {
        margin-top: 0.04rem;
        padding-left: 0.2rem;
        font-size: 0.12rem;
        line-height: 0.16rem;
        background-size: 0.16rem;
    }
    select {
        background-position: right 0.12rem center;
        background-size: 0.16rem;
    }
    input,
    select {
        padding: 0.08rem 0.12rem;
        font-size: 0.16rem;
        line-height: 0.24rem;
    }
    .hint {
        margin-top: 0.04rem;
        font-size: 0.12rem;
    }
    .peek {
        right: 0.12rem;
        width: 0.16rem;
    }
    button {
        padding: 0.08rem 0.12rem;
        border-radius: 0.02rem;
        font-size: 0.16rem;
        line-height: 0.24rem;
    }
    hr {
        margin: 0.12rem 0;
    }
    .agreement {
        margin: 0.16rem 0.32rem;
        font-size: 0.14rem;
    }
}