@charset "utf-8";

.login {
    /* 背景图，不平铺 */
    /* background: url("https://api.vvhan.com/api/bing") no-repeat; */
    background: url("../img/loginbg.png") no-repeat;
    /* 基于容器大小伸缩 */
    background-size: cover;
    /* 透明度 */
    opacity: 0.80;
    height: 100vh;
    width: 100%;
    /* 隐藏流动条 */
    overflow: hidden;
    position: relative;
}

.login-title {
    text-align: center;
    margin: 10px 0;
}

.login-form {
    background-color: #01010181;
    width: 350px;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    height: 220px;
    color: white;
    text-align: center;
    border: 1px solid #3e4264;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

}

.form {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.login-submit {
    background-color: rgb(0, 153, 255);
    color: white;
    border: unset;
    padding: 2px 5px;
    border-radius: 2px;
    width: 80px;
    margin-top: 10px;
}
.login-submit:hover {
    background-color: #00aeff;
}
.login-input {
    padding: 3px;
}