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";
}

.auth-page {
  background: radial-gradient(circle at top, #101d3f 0%, #050914 55%);
  min-height: calc(100vh - 80px);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-shell {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  color: #f5f7ff;
}

.auth-spotlight {
  background: linear-gradient(135deg, rgba(97, 131, 255, 0.25), rgba(29, 50, 115, 0.95));
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 40px 80px rgba(5, 10, 37, 0.45);
}

.auth-spotlight h1 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 12px 0 20px;
}

.auth-spotlight .lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.spotlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spotlight-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.5;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.spotlight-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, #59f5c7, #6b7bff);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stats h3 {
  margin: 0;
  font-size: 30px;
}

.stats p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.auth-card {
  background: #0b1226;
  border-radius: 32px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 25px 60px rgba(2, 5, 14, 0.6);
}

.auth-card h2 {
  font-size: 26px;
  margin: 0;
}

.auth-card .subtext {
  color: #98a3c7;
  margin: 0;
}

.auth-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.auth-tabs a {
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.auth-tabs a.active {
  background: linear-gradient(120deg, #59f5c7, #6b7bff);
  color: #041024;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #c9d4f6;
}

.field input {
  background: rgba(5, 9, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  border-color: #59f5c7;
  box-shadow: 0 0 0 2px rgba(89, 245, 199, 0.2);
}

.input-group.compact {
  background: rgba(5, 9, 20, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
}

.input-group.compact .form-control {
  background: transparent;
  border: none;
  color: #fff;
  box-shadow: none;
}

.input-group.compact .btn-info,
.input-group.compact .btn-primary {
  border-radius: 14px;
  border: none;
  background: linear-gradient(120deg, #59f5c7, #6b7bff);
  color: #041024;
}

.form-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #98a3c7;
}

.form-meta a {
  color: #59f5c7;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #c9d4f6;
  margin: 0;
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.auth-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.auth-form .auth-btn {
  width: 100%;
}

.auth-btn.primary {
  background: linear-gradient(120deg, #59f5c7, #6b7bff);
  color: #041024;
  box-shadow: 0 20px 45px rgba(89, 245, 199, 0.25);
}

.auth-btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d7def9;
}

.auth-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #59f5c7;
}

.subtext {
  font-size: 14px;
  color: #98a3c7;
}

@media (max-width: 768px) {
  .auth-page {
    padding: 60px 15px;
  }

  .auth-spotlight,
  .auth-card {
    padding: 28px;
  }

  .form-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/*# sourceMappingURL=user.css.map */
