body {
    width: 100%;
    height: 100%;
    /*将图片居中对齐*/
    background: url("../pictures/伊利2024校园招聘海报横版.jpg") no-repeat fixed;
    background-size: cover;
}

@media (max-width: 768px) {
    body {
        width: 100%;
        height: 100%;
        background-image: url("../pictures/伊利2024校园招聘海报竖版.jpg");
        background-size: cover;
    }
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    width: 300px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7); /* 半透明背景 */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-box button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.login-box button:hover {
    background-color: #45a049;
}

.no-account {
    text-align: center;
    margin-top: 10px;
}

.no-account a {
    color: #007BFF; /* Blue color */
    text-decoration: none; /* Remove underline */
}

.no-account a:hover {
    color: #0056b3; /* Darker blue on hover */
}