body {
    font-family: Arial, sans-serif; /* 设置字体 */
    background-color: #f4f4f4; /* 背景颜色 */
}

.login-container {
    width: 300px;
    margin: 100px auto; /* 随机居中 */
    padding: 20px;
    background-color: white; /* 表单背景色 */
    border-radius: 5px; /* 边框圆角 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

h1 {
    text-align: center; /* 标题对齐 */
}

label {
    display: block; /* 每个标签独占一行 */
    margin-top: 10px; /* 上边距 */
}

input {
    width: 90%; /* 输入框宽度 */
    padding: 10px; /* 内边距 */
    margin-top: 5px; /* 上边距 */
}