﻿html,
body {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: url(img/signinbg.jpg) no-repeat;
    background-size: 100% auto;
}

[v-cloak] {
    display: none;
}

input:-webkit-autofill {
    background: transparent !important;
    transition: background-color 500000s ease-in-out 0s !important;
    -webkit-text-fill-color: var(--el-input-text-color);
}

input:-internal-autofill-selected {
    background-color: transparent !important;
}

.login-wrap {
    width: 480px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: white;
    border-radius: 8px;
    transform: translate(-50%, -50%);
    height: 440px;
    min-height: 440px;
    overflow: hidden;
    box-shadow: 0 6px 20px 5px #9898981a, 0 16px 24px 2px #75757524;
    padding-bottom: 38px;
}

.login-bottom {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.login-title {
    text-align: center;
    font-size: 30px;
    padding: 16px 0;
}

.login-form {
    width: 340px;
    margin: 50px auto 15px auto;
}

.login-form .el-form-item {
    margin-bottom: 26px;
}

.login-form .el-form-item__error {
    padding-top: 4px;
}

.login-form-hadcode {
    margin-top: 18px;
}

.login-code-left {
    width: 200px;
}

.login-code-right {
    width: 100px;
    height: 38px;
    margin-left: 20px;
}

.login-code-right img {
    height: 30px;
}

.btn-clear-cache {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 50px;
    background: 0 0;
    padding: 6px 15px;
    border: 1px solid #4fa1d9;
    color: #4fa1d9;
    font-size: 12px;
    cursor: pointer;
}