h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
}
.user-baseinfo {
  margin-bottom: 25px;
}
.user-baseinfo table tr td {
  color: #999;
}
@media (min-width: 992px) {
  .user-center .avatar-text,
  .user-center .avatar-img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
    line-height: 150px;
    font-size: 70px;
  }
  .user-center .avatar-img {
    font-size: 0;
  }
  .user-center .avatar-img img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
  }
}
.sidebar-toggle {
  display: none;
}
@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 1029;
    height: calc(100vh - 50px);
    padding: 20px 0 20px 0;
    min-width: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 250px;
    left: -250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    background: #eee;
    font-size: 22px;
    padding: 10px;
    line-height: 30px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 999999;
  }
}
body.sidebar-open .sidenav {
  left: 0;
  width: 250px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.075);
}
body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}

/* 登录页面美化样式 */
body {
  background-color: #f5f7fa;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #e8e8e8 100%);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

#content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 40px 20px;
}

.user-section.login-section {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 50px 40px;
  width: 100%;
  max-width: 450px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.user-section.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
  padding: 10px 0;
}

.login-logo img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.login-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.user-section.login-section:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.logon-tab {
  text-align: center;
  margin-bottom: 30px;
}

.logon-tab a {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  padding: 0 20px;
  border-bottom: 3px solid #e74c3c;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logon-tab a:hover {
  color: #e74c3c;
}

.login-main {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e74c3c;
  transition: width 0.3s ease;
}

.form-group:focus-within::after {
  width: 100%;
}

.control-label {
  display: block;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e8ed;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #333;
}

.form-control:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-control::placeholder {
  color: #999;
}

.checkbox.inline {
  margin: 0;
}

.checkbox.inline label {
  font-weight: normal;
  color: #666;
  cursor: pointer;
}

.checkbox.inline input[type="checkbox"] {
  margin-right: 6px;
  cursor: pointer;
}

.btn-primary {
  background-color: #e74c3c;
  background-image: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border: none;
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.2);
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-image: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.35);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.2);
}

.pull-right {
  text-align: right;
}

.btn-forgot {
  color: #e74c3c;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.btn-forgot:hover {
  color: #c0392b;
  text-decoration: underline;
}

.help-block {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}

/* 响应式设计 */
@media (max-width: 767px) {
  .user-section.login-section {
    padding: 30px 25px;
    margin: 20px;
  }
  
  .logon-tab a {
    font-size: 20px;
  }
  
  #content-container {
    padding: 20px 10px;
    min-height: calc(100vh - 100px);
  }
}

/* 动画效果 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.user-section.login-section {
  animation: fadeIn 0.6s ease-in-out;
}

.form-control {
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  animation: pulse 2s infinite ease-in-out;
  animation-delay: 1s;
}
/*# sourceMappingURL=user.css.map */