:root{
  --bg0:#0b1020;
  --bg1:#0f1833;
  --card:#121a33cc;
  --line:#ffffff14;
  --text:#e9edf7;
  --muted:#a9b2cc;
  --accent:#5dd6ff;
  --accent2:#7c5cff;
}

.auth-body{
  min-height:100vh;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 15%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(900px 600px at 80% 25%, rgba(93,214,255,.18), transparent 55%),
    radial-gradient(900px 700px at 50% 85%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

.auth-shell{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.auth-card{
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  overflow:hidden;
}

.auth-card .auth-head{
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand-badge{
  display:flex;
  gap:10px;
  align-items:center;
}

.brand-dot{
  width:12px;height:12px;border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(93,214,255,.12);
}

.auth-title{
  margin:0;
  font-weight: 700;
  letter-spacing:.2px;
}

.auth-sub{
  margin:0;
  color: var(--muted);
  font-size: .92rem;
}

.auth-body-inner{
  padding: 20px;
}

.form-control, .form-select{
  background-color: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--text);
}
.form-control:focus{
  border-color: rgba(93,214,255,.55);
  box-shadow: 0 0 0 .25rem rgba(93,214,255,.12);
  background-color: rgba(255,255,255,.07);
  color: var(--text);
}
.form-control::placeholder{ color: rgba(233,237,247,.55); }

.btn-accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: 0;
  font-weight: 700;
}
.btn-accent:hover{
  filter: brightness(1.05);
}
.small-muted{ color: var(--muted); }


.navbar .nav-link{
  color: #fff !important;
  
}

.navbar .nav-link.active{
  color: #fff !important;
  text-decoration: none;
  position: relative;
}
.navbar .nav-link.active::after{
  content:"";
  position:absolute;
  left: .5rem;
  right: .5rem;
  bottom: .25rem;
  height: 2px;
  background: rgba(93,214,255,.55);
  border-radius: 2px;
}

.brand-dot{
  width:12px;height:12px;border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(93,214,255,.12);
  display:inline-block;
}