:root{
  --bg:#070a12;
  --card:#0c1220;
  --muted:#a8b0c2;
  --text:#eef2ff;
  --accent:#f7c600;
  --border:rgba(255,255,255,.10);
  --good:#2dd4bf;
  --bad:#fb7185;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 500px at 50% 25%, rgba(247,198,0,.10), transparent 60%),
    radial-gradient(700px 400px at 15% 80%, rgba(45,212,191,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.wrap{width:100%; max-width:520px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow: var(--shadow);
  padding:22px;
  backdrop-filter: blur(10px);
}

.head{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:14px;
}
.logo{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(247,198,0,.12);
  border:1px solid rgba(247,198,0,.22);
  font-size:22px;
}
h1{margin:0;font-size:22px;letter-spacing:.2px}
.sub{margin:4px 0 0;color:var(--muted);font-size:14px}

label{
  display:block;
  margin:12px 0 6px;
  color: var(--muted);
  font-size: 13px;
}
input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input:focus{
  border-color: rgba(247,198,0,.55);
  box-shadow: 0 0 0 4px rgba(247,198,0,.12);
}

button{
  width:100%;
  margin-top:14px;
  padding:12px 14px;
  border-radius:12px;
  border:0;
  background: var(--accent);
  color:#1a1500;
  font-weight:800;
  cursor:pointer;
}
button:disabled{
  opacity:.65;
  cursor:not-allowed;
}

.status{
  margin-top:12px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color: var(--muted);
  min-height: 44px;
  display:flex;
  align-items:center;
}
.status.good{
  border-color: rgba(45,212,191,.35);
  color: #b7fff1;
}
.status.bad{
  border-color: rgba(251,113,133,.35);
  color: #ffd0d7;
}

.fine{
  margin:12px 2px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.details{
  margin-top:12px;
  color: var(--muted);
  font-size: 12px;
}
.details summary{
  cursor:pointer;
  color: #dbe3ff;
}
.details ul{
  margin:8px 0 0 18px;
  padding:0;
}
.tiny{
  margin-top:12px;
  font-size: 12px;
}
.tiny a{color:#dbe3ff}