:root{
  --bg0:#050a08;
  --bg1:#07130f;

  --card: rgba(8, 18, 14, .72);
  --card2: rgba(10, 26, 20, .55);
  --line: rgba(169,224,78,.18);

  --txt:#E9F7EE;
  --muted: rgba(233,247,238,.70);

  --jcb-green:#a9e04e;
  --jcb-dark:#023821;
  --jcb-red:#c64832;

  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--txt);
  font-family: Sora, Segoe UI, system-ui, -apple-system, Arial;
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(169,224,78,.18), transparent 60%),
    radial-gradient(700px 420px at 80% 0%, rgba(198,72,50,.12), transparent 55%),
    radial-gradient(900px 520px at 80% 110%, rgba(2,56,33,.45), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit;text-decoration:none}

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.20);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.brand{display:flex;gap:12px;align-items:center}
.logo-dot{
  width:12px;height:12px;border-radius:6px;
  background: linear-gradient(180deg, var(--jcb-green), #7bd63a);
  box-shadow: 0 0 0 4px rgba(169,224,78,.12);
}

.badge{
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
  background: rgba(10,26,20,.35);
}

.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:14px}
.col12{grid-column: span 12;}
.col6{grid-column: span 6;}

.card{
  grid-column: span 12;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card h2{margin:0 0 10px 0;font-size:16px}
.card-title{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  margin-bottom: 6px;
}

.pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(10, 26, 20, .35);
}

.row{display:flex;gap:10px;flex-wrap:wrap;align-items:center}

.input{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(169,224,78,.14);
  background: rgba(0,0,0,.30);
  color: var(--txt);
  outline: none;
}
.input:focus{
  border-color: rgba(169,224,78,.35);
  box-shadow: 0 0 0 4px rgba(169,224,78,.10);
}

.btn{
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.20);
  color: var(--txt);
  cursor:pointer;
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }

.btn.primary{
  background: linear-gradient(180deg, var(--jcb-green), #7bd63a);
  border-color: rgba(169,224,78,.35);
  color: #06130f;
  font-weight: 700;
}

.btn.ghost{border-color: var(--line); color: var(--muted);}

.btn.danger{
  border-color: rgba(198,72,50,.45);
  color: rgba(255,255,255,.92);
  background: rgba(198,72,50,.12);
}
.btn.danger:hover{ background: rgba(198,72,50,.18); }

.table{width:100%;border-collapse:collapse;margin-top:12px}
.table th,.table td{
  border-bottom:1px solid rgba(169,224,78,.10);
  padding:10px;
  text-align:left;
  font-size:13px;
  color:var(--txt);
}
.table th{color:var(--muted);font-weight:700}

.small{color:var(--muted);font-size:12px}

hr.sep{border:0;border-top:1px solid rgba(169,224,78,.12);margin:16px 0}

.hint{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(169,224,78,.14);
  background: rgba(10,26,20,.35);
  color: var(--muted);
}

.code{
  margin:0;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.35);
  overflow:auto;
  max-height: 420px;
  color: #dffbe8;
  font-size: 12px;
  white-space: pre-wrap;
}
.brand-logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(0,0,0,.12);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  padding: 6px;
}
/* ===== LOGIN HERO ===== */
.login-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.login-card{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: center;
}

@media (max-width: 860px){
  .login-card{ grid-template-columns: 1fr; }
}

.login-hero{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.login-logo-big{
  width: min(360px, 100%);
  height: auto;
  display:block;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
}

.login-sub{
  color: var(--muted);
  margin: 0;
}

.login-side{
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:flex-end;
}

@media (max-width: 860px){
  .login-side{ align-items:flex-start; }
}

.avatar-big{
  width: 92px;
  height: 92px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.login-mini{
  color: var(--muted);
  font-size: 12px;
}