* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    width: 100vw;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-image: url('/static/img/loginbj.png');
    background-size: cover;
    background-position: center;
}

.login-form {
    width: 28vw;
    height: 66vh;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 2vh;
    padding: 3vh;
    box-shadow: 0 0 2vw rgba(0, 0, 0, 0.1);
    font-size: 1.2vw;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 2vh;
    margin-top: 4vh;
}

.login-form label {
    display: block;
    margin-bottom: 1vh;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    font-size: 1.2vw;
    height: 5vh;
    padding: 1vh;
    margin-bottom: 2vh;
    border: 0.01vw solid rgba(0, 0, 0, 0.1); /* 将#ccc转换为相对于背景的透明度 */
    border-radius: 1vh;

}

.login-form button[type="submit"] {
    width: 100%;
    height: 5vh;
    font-size: 1.2vw;
    padding: 1vh;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 1vh;
    cursor: pointer;
    margin-top: 7vh;

}
.form-all{
    margin-top: 6vh;
}
.title{
    width: 49vw;
    height: 25vh;
}
.logo{
    width: 31vw;
    height: 4vh;


}
.login-img{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 6vw;
}
.rlogo{
margin-left: 1vw;
    width: 3vw;
    height: 6vh;
}

.downlogo{
    margin-right: -13vw;
    margin-top: 4vh;
    width: 40vw;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

