body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    background-image: url('./BG_CS_PR_10.jpg'); /* 添加背景图像的路径 */
    background-size: cover; /* 确保背景图像覆盖整个背景 */
    background-position: center; /* 居中背景图像 */
    background-repeat: no-repeat; /* 防止背景图像重复 */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.9); /* 半透明白色背景 */
    padding: 3rem; /* 增加内边距 */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px; /* 增加宽度 */
    max-width: 90%; /* 防止在小屏幕上过大 */
}

h2 {
    margin-bottom: 2rem; /* 增加标题和表单之间的间距 */
}

.form-group {
    margin-bottom: 1.5rem; /* 增加每个表单组之间的间距 */
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem; /* 增加输入框的内边距 */
    margin-bottom: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.remember-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem; /* 增加复选框组的间距 */
}

input[type="checkbox"] {
    margin-right: 0.5rem;
}

button {
    width: 100%;
    padding: 1rem; /* 增加按钮的内边距 */
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.forgot-password {
    margin-top: 1.5rem; /* 增加顶部外边距 */
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}
