html,
body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-image: url('../images/img_bg.jpg');
    background-size: 100% 100%;
}

#page {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 60px;
    height: 60px;
}

.title {
    margin: 20px auto;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.4);
    width: 450px;
    padding: 0 0 20px 0;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
    color: #fff;
}

.login-box .login-title {
    border-bottom: 2px solid #2978ff;
    padding: 15px 30px;
    font-size: 22px;
}

.login-input {
    position: relative;
}

.login-input input {
    width: 300px;
    padding: 7px 30px;
    border-radius: 3px;
    border: none;
    margin: 10px 0;
    color: #3d3d3d;
    font-size: 14px;
}

.icon {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 8px;
    top: 17px;
}

button {
    border: none;
}

.login-btn {
    background-color: #2978ff;
    color: #fff;
    width: 360px;
    padding: 7px 30px;
    border-radius: 5px;
}

.login-btn:hover {
    background-color: #1068ff;
}

.entrust-btn {
    margin-top: 20px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 7px 30px;
}

.entrust-btn:hover {
    background-color: rgba(255, 255, 255, 0.7);
}


.footer {
    height: 30px;
    line-height: 30px;
    color: white;
}

.attention {
    color:white;
    margin-bottom: .1rem;
    width: 360px;
}

    .attention input {
       
        /*vertical-align: middle;*/
    }

    .attention label {
        color: white;
        font-size:10pt;
    }

    .attention a {
        text-decoration: none;
        color: #fff;
        float: right;
        font-size: 10pt;
        margin-right: .1rem;
    }