/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f4f7fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}
/* 备案号区域样式 */
.beian-section {
  background-color: #f8f9fa; /* 浅灰色背景 */
  border-top: 1px solid #e9ecef; /* 顶部边框 */
  padding: 15px 0; /* 上下内边距 */
  text-align: center; /* 文本居中 */
  position: fixed; /* 固定定位 */
  bottom: 0; /* 固定在底部 */
  left: 0; /* 左侧对齐 */
  width: 100%; /* 宽度100% */
  z-index: 1000; /* 确保在最上层 */
}

.beian-content {
  max-width: 1200px; /* 最大宽度 */
  margin: 0 auto; /* 水平居中 */
  font-size: 14px; /* 字体大小 */
  color: #6c757d; /* 文本颜色（灰色） */
  line-height: 1.5; /* 行间距 */
}

.beian-content a {
  color: #c1ccd7; /* 链接颜色（蓝色） */
  text-decoration: none; /* 去掉下划线 */
  transition: color 0.3s ease; /* 颜色过渡效果 */
}

.beian-content a:hover {
  color: #0056b3; /* 鼠标悬停时深蓝色 */
  text-decoration: underline; /* 悬停时显示下划线 */
}
.login-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.input-group {
  margin-bottom: 15px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: #2980b9;
}

.message {
  margin-top: 15px;
  font-size: 14px;
}

.message.success {
  color: #27ae60;
}

.message.error {
  color: #e74c3c;
}
