* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    display: none;
}

.home-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.wrap {
    transform-origin: 0px 0px 0px;
    /*background: url(../img/login/login_bg.png) no-repeat;*/
    background-color: #000417;
    background-size: 100% 100%;
    min-width: auto;
    /* width: 1920px;
      min-height: auto;
      height: 1080px; */
    width: 100vw;
    height: 100vh;
    overflow: auto;
    position: absolute;
}

.title {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    /*background: url(../img/login/title.png) no-repeat;*/
    background-size: contain;
    width: 1849px;
    height: 143px;
}

.login {
    height: 540px;
    background: rgba(16, 26, 47, 0.7);
    border-radius: 8px;
    border: 1px solid;
    border-image: linear-gradient(180deg,
    rgba(47, 168, 255, 1),
    rgba(0, 60, 133, 1),
    rgba(0, 18, 143, 1)) 1 1;
    position: absolute;
    top: 204px;
    right: 120px;
    box-sizing: border-box;
    padding: 10px 0;
    display: flex;
}

.account-login {
    width: 700px;
    height: 100%;
    box-sizing: border-box;
    padding-left: 60px;
}

.type {
    display: flex;
    align-items: center;
    margin: 50px 0 35px;
}

.type .sign {
    width: 4px;
    height: 24px;
    margin-right: 12px;
    background: linear-gradient(180deg, #2fa8ff 0%, #156fff 100%);
}

.type .name img {
    width: 117px;
    height: 24px;
}

.form-item .form-type {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.form-item .form-type .username-sign {
    background: url(../img/login/login_username.png) no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
}

.form-item .form-type .password-sign {
    background: url(../img/login/login_password.png) no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
}

.form-item .form-type .name {
    margin-left: 10px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #ffffff;
}

.form-item .form-input {
    outline-style: none;
    width: 280px;
    height: 44px;
    box-sizing: border-box;
    border: 1px solid #213361;
    background: #213361;
    border-radius: 2px;
    font-size: 14px;
    padding-left: 16px;
    color: #fff;
    margin-top: 14px;
}

.form-item .form-input:focus {
    border: 1px solid #156fff;
    box-shadow: 0 0 10px 5px #1b376b;
}

.verification {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.verification input {
    margin-top: 0px !important;
    margin-right: 12px;
    width: 168px !important;
}

.verification img {
    width: 100px;
    height: 44px;
}

.btn-login {
    margin-top: 40px;
    width: 280px;
    height: 50px;
    background: #156fff;
    border-radius: 4px;
    font-size: 18px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    border: 0;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .wrap {
        background: rgb(16, 26, 47);
    }

    .title {
        display: none;
    }

    .login {
        height: 600px;
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        box-sizing: border-box;
        padding: 20px 0;
        display: flex;
    }

    .account-login {
        width: 350px;
        height: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }

}

