/* Functional scaffold — visual design replaced later via Claude design. */
* { box-sizing: border-box; margin: 0; }
[hidden] { display: none !important; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #12121a;
  color: #eee;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.card {
  width: 100%;
  max-width: 380px;
  background: #1c1c28;
  border-radius: 16px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

h1 { font-size: 1.6rem; letter-spacing: 0.06em; }
.tag { color: #9a9ab0; }

form { display: grid; gap: 0.7rem; }

input {
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #33334a;
  background: #12121a;
  color: #eee;
  font-size: 1rem;
  width: 100%;
}
input:focus { outline: 2px solid #7c6cf0; border-color: transparent; }

button {
  padding: 0.75rem;
  border-radius: 10px;
  border: 0;
  background: #7c6cf0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
button:hover { filter: brightness(1.1); }
button.ghost { background: transparent; color: #9a9ab0; }
button.danger { background: #b03a4a; }

.consent { font-size: 0.75rem; color: #9a9ab0; line-height: 1.4; }
#msg { min-height: 1.2em; color: #f0b46c; font-size: 0.9rem; }
label { display: flex; gap: 0.5rem; align-items: center; font-size: 0.95rem; }
a { color: #a99cf5; }
.row { display: grid; gap: 0.5rem; }
hr { border: 0; border-top: 1px solid #33334a; width: 100%; }
