:root{
  --bg:#070A10;
  --panel:rgba(12,16,28,.74);
  --panel2:rgba(9,12,22,.88);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.16);
  --txt:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.62);

  --brand:#2CFF6D;
  --brand2:#19D7FF;

  --danger:#FF4D6D;

  --shadow: 0 24px 60px rgba(0,0,0,.55);
  --r:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--txt);
  background:
    radial-gradient(1100px 700px at 20% 10%, rgba(44,255,109,.16), transparent 55%),
    radial-gradient(900px 600px at 85% 20%, rgba(25,215,255,.13), transparent 60%),
    radial-gradient(900px 600px at 60% 90%, rgba(138,85,255,.10), transparent 55%),
    linear-gradient(180deg, #05070D 0%, #070A10 55%, #05070D 100%);
}

.tp-wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
}

.tp-card{
  width:min(520px, 100%);
  border-radius:var(--r);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel2) 100%);
  box-shadow:var(--shadow);
  padding:26px 24px 20px;
  position:relative;
  overflow:hidden;
}

.tp-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 240px at 15% 0%, rgba(44,255,109,.22), transparent 55%),
    radial-gradient(520px 240px at 95% 0%, rgba(25,215,255,.14), transparent 55%);
  filter: blur(10px);
  opacity:.95;
  pointer-events:none;
}

.tp-head,
.tp-title,
.tp-desc,
.tp-form,
.tp-alert,
.tp-foot{
  position:relative;
}

.tp-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.tp-logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.tp-mark{
  width:38px;
  height:38px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(44,255,109,.22), rgba(25,215,255,.18));
  border:1px solid rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
}

.tp-mark svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:var(--brand);
  stroke-width:2.2;
  filter: drop-shadow(0 0 10px rgba(44,255,109,.25));
}

.tp-name{
  font-weight:900;
  letter-spacing:.6px;
  font-size:13px;
  color:rgba(255,255,255,.80);
}
.tp-sub{
  margin-top:1px;
  font-size:11px;
  color:rgba(255,255,255,.54);
}

.tp-chip{
  font-size:12px;
  color:rgba(255,255,255,.76);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  white-space:nowrap;
}

.tp-title{
  margin:10px 0 6px;
  font-size:22px;
  line-height:1.2;
}
.tp-desc{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.tp-alert{
  border:1px solid rgba(255,77,109,.35);
  background: rgba(255,77,109,.10);
  border-radius:14px;
  padding:12px 12px;
  margin:0 0 14px;
  font-size:13px;
}

.tp-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.tp-field{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.tp-label{
  font-size:12px;
  color:rgba(255,255,255,.70);
}

.tp-inputwrap{
  position:relative;
  display:flex;
  align-items:center;
  border-radius:14px;
  border:1px solid var(--stroke2);
  background: rgba(0,0,0,.20);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.tp-inputwrap:focus-within{
  border-color: rgba(44,255,109,.55);
  box-shadow: 0 0 0 4px rgba(44,255,109,.10);
}

.tp-input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:var(--txt);
  padding:14px 44px 14px 14px;
  font-size:14px;
}

.tp-input::placeholder{ color: rgba(255,255,255,.38); }

.tp-eye{
  position:absolute;
  right:10px;
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .10s ease, background .15s ease, border-color .15s ease;
}

.tp-eye:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}
.tp-eye:active{ transform: scale(.98); }

.tp-eye svg{
  width:18px;
  height:18px;
  stroke: rgba(255,255,255,.86);
  fill:none;
  stroke-width:2;
}

.tp-btn{
  margin-top:8px;
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid rgba(44,255,109,.45);
  background: linear-gradient(180deg, rgba(44,255,109,.20), rgba(44,255,109,.10));
  color: rgba(255,255,255,.94);
  font-weight:800;
  letter-spacing:.3px;
  cursor:pointer;
  transition: transform .10s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.tp-btn:hover{
  border-color: rgba(44,255,109,.70);
  box-shadow: 0 18px 50px rgba(44,255,109,.10), 0 18px 40px rgba(0,0,0,.35);
}
.tp-btn:active{ transform: translateY(1px); }

.tp-foot{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:rgba(255,255,255,.55);
  font-size:12px;
}

.tp-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.tp-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(44,255,109,.35);
}

.tp-mini{
  opacity:.8;
}
