body,html{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
}

input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

/* #app {
    width: 100vw;
    height: 100vh;
    font-size: 12px;
    background-image: linear-gradient(135deg, #fc57c4, #6800ff 50%, #0062ff, #00efff);
    background-size: var(--backgroundWidth) 100%;
    background-repeat: no-repeat;
    --backgroundWidth: 40vw;
} */

#app {
    width: 100vw;
    height: 100vh;
    font-size: 12px;
    background-image: linear-gradient(135deg, #fc57c488, #0062ff88);
    background-size: var(--backgroundWidth) 100%;
    background-repeat: no-repeat;
    --backgroundWidth: 100vw;
    user-select: none;
}

.login_con {
    background: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.5em;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    justify-items: center;
    padding: 3em;
}

.logo {
    font-size: 2em;
    font-weight: 700;
    width: 100%;
    margin-bottom: 3em;
}

.logo img{
    width: 1.5em;
    height: 1.5em;
}

.login_body_item {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-bottom: 2em;
    align-items: center;
    position: relative;
}

.login_body_item > input {
    border: none;
    outline: none;
    border-bottom: 1px solid var(--el-border-color-darker);
    padding: 0.5em 0.5em;
    font-weight: 100;
    font-size: 1.3em;
    color: var(--el-text-color-primary);
}

.login_body_item > input::-webkit-input-placeholder {
    color: var(--el-border-color-darker);
    font-weight: 100;
}

.login_body_item > input{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.send_code_countdown,
.send_code {
    margin-left: 1em;
    color: var(--el-color-primary);
    border: 1px solid var(--el-color-primary);
    padding: 0.6em 1em;
    border-radius: 0.3em;
    cursor: pointer;
    min-width: 7em;
    text-align: center;
}

.send_code_countdown{
    display: none;
    opacity: 0.3;
    cursor: no-drop;
    white-space: nowrap;
}

.login_btn {
    padding: 0.5em;
    text-align: center;
    font-size: 1.3em;
    background: var(--el-color-primary);
    color: #fff;
    border-radius: 0.3em;
    cursor: pointer;
    margin-top: 2em;
    position: relative;
}

.login_btn_loading {
    opacity: 0.3;
    pointer-events: none;
}

.login_btn_loading::after {
    content: "";
    width: 1.5em;
    height: 1.5em;
    border: 2px dashed #fff;
    border-style: outset;
    position: absolute;
    left: 1em;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    border-radius: 100%;
    animation: loginAni 1.5s ease-in-out infinite;
}

@keyframes loginAni {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.other_sign_con {
    margin-top: 4em;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.other_sign_con>span {
    margin-bottom: 2em;
    color: var(--el-border-color-darker);
    font-size: 1.2em;
    background: #fff;
    position: relative;
    box-sizing: border-box;
    padding: 0 1em;
}

.other_sign_con>span::after {
    content: "";
    display: block;
    width: calc(100% + 4em);
    height: 1px;
    background: var(--el-border-color-darker);
    position: absolute;
    top: 50%;
    left: -2em;
    z-index: -1;
}

.other_sign {
    background: var(--el-bg-color-page);
    padding: 0.5em;
    width: 3em;
    height: 3em;
    cursor: pointer;
}

.other_sign>svg {
    width: 100%;
    height: 100%;
}

.verify_tips {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    color: var(--el-color-error);
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height .2s;
}

.verify_tips_show{
    height: 1.5em;
    opacity: 1;
}

.authing-ant-message{
    display: none;
    opacity: 0;
    pointer-events: none;
}

#authing_logoing {
    background: #fff;
    z-index: 9999;
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.g2-init-setting-loading{
    box-shadow: unset !important;
}

.g2-view-container{
    pointer-events: none;
    opacity: 0;
}