* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0f1117;
  color: #e1e4e8;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 420px;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: #8b949e;
  line-height: 1.5;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

input {
  padding: 0.75rem 1rem;
  border: 1px solid #30363d;
  border-radius: 6px;
  background: #161b22;
  color: #e1e4e8;
  font-size: 1rem;
  outline: none;
}

input:focus {
  border-color: #58a6ff;
}

button {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  background: #238636;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

button:hover { background: #2ea043; }
button:disabled { opacity: 0.6; cursor: not-allowed; }

.disclosure {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: left;
  font-size: 0.85rem;
}

.disclosure p {
  margin-bottom: 0.75rem;
  color: #8b949e;
  line-height: 1.4;
}

.disclosure p:last-child {
  margin-bottom: 0;
}

.error {
  color: #f85149;
}

.muted {
  color: #484f58;
}

a {
  color: #58a6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.legal {
  max-width: 640px;
  text-align: left;
}

.legal h2 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: #8b949e;
  line-height: 1.6;
}

.legal li {
  margin-bottom: 0.25rem;
}
