html,
body {
  height: 100%;
  background: #f6f6f6;
}

.login-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../images/bg.svg') no-repeat center center;
  background-size: cover;
}

.login-box {
  width: 400px;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-title {
  text-align: center;
  margin-bottom: 30px;
}

.login-title h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}

.login-title p {
  font-size: 14px;
  color: #999;
}

.layui-form-item {
  margin-bottom: 25px;
}

.layui-input {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  border-radius: 5px;
}

.layui-btn {
  height: 50px;
  line-height: 50px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
}

.login-oauth {
  margin-top: 20px;
  text-align: center;
}

.login-oauth p {
  color: #999;
  margin-bottom: 15px;
}

.oauth-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  border-radius: 50%;
  background: #f5f5f5;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.oauth-icon:hover {
  background: #e6e6e6;
}



.wechat-icon i {
  font-size: 24px;
  color: #07C160;
}

.login-links {
  margin-top: 20px;
  text-align: center;
}

.login-links a {
  color: #1E9FFF;
  margin: 0 10px;
}

.login-copyright {
  margin-top: 30px;
  text-align: center;
  color: #999;
  font-size: 12px;
}