body {
    background-color: #f8f9fa; /* 背景色 */
    font-family: Arial, sans-serif;
}

.container {
    margin-top: 50px; /* 上边距 */
    padding: 20px;
    background-color: white; /* 白色背景 */
    border-radius: 5px; /* 圆角边框 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

h2 {
    color: #007bff; /* 标题颜色 */
}

.btn {
    margin-top: 10px; /* 按钮上边距 */
}

.text-danger {
    color: red; /* 错误消息颜色 */
}

.text-success {
    color: green; /* 成功消息颜色 */
}