html {
    height: 100%;
}

body {
    position: static;
    font-size: 12px;
    background: url(/static/images/login-bg.png) 0% 0% / cover no-repeat;
}

input::-webkit-input-placeholder {
    color: #a6aebf;
}

input::-moz-placeholder {
    color: #a6aebf;
}

input:-moz-placeholder {
    color: #a6aebf;
}

input:-ms-input-placeholder {
    color: #a6aebf;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.login-main {
    position: relative;
    width: 428px;
}

.login-top {
    height: 117px;
    line-height: 117px;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    border-radius: 12px 12px 0 0;
    background-color: #148be4;
    overflow: hidden;
}

.login-top .bg1 {
    position: absolute;
    display: inline-block;
    top: 43px;
    left: 0;
    width: 74px;
    height: 74px;
    border-radius: 0 74px 0 0;
    background: #fff;
    opacity: .1;
}

.login-top .bg2 {
    position: absolute;
    display: inline-block;
    top: -16px;
    right: -16px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: #fff;
    opacity: .1;
}

.login-body {
    width: 428px;
    padding-bottom: 53px;
    border-radius: 0 0 12px 12px;
    background: #fff;
}

.login-body .center {
    position: relative;
    width: 288px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 15px;
}

.login-body .item {
    width: 288px;
    height: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #dae1e6;
}

.login-body .item input {
    position: absolute;
    display: inline-block;
    width: 227px;
    height: 22px;
    font-size: 14px;
    padding: 0;
    border: 0;
    outline: 0;
}

.login-body .item .icon {
    display: inline-block;
    width: 33px;
    height: 22px;
}

.login-body .item .icon-1 {
    background: url(/static/images/login-icon.png) no-repeat 1px 0;
}

.login-body .item .icon-2 {
    background: url(/static/images/login-icon.png) no-repeat -54px 0;
}

.login-body .item .icon-3 {
    background: url(/static/images/login-icon.png) no-repeat -106px 0;
}

.login-body .item .icon-4 {
    position: absolute;
    right: -10px;
    background: url(/static/images/login-icon.png) no-repeat 0 -43px;
    cursor: pointer;
}

.login-body .item .icon-5 {
    background: url(/static/images/login-icon.png) no-repeat -55px -43px;
}

.login-body .item .icon-6 {
    position: absolute;
    right: -10px;
    margin-top: 8px;
    background: url(/static/images/login-icon.png) no-repeat 0 -93px;
    cursor: pointer;
}

.login-bottom {
    text-align: center;
    width: 100%;
    height: 100%;
    margin: 0px;
}

.login-bottom button {
    width: 288px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin: 24px auto 0;
    border-radius: 16px;
    border: none;
    background-color: #1E9FFF;
    cursor: pointer;
}

.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    line-height: 30px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    padding-bottom: 10px;
    text-shadow: #000 0.1em 0.1em 0.1em;
}