body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, sans-serif;
  background: #0b0b0b;
  color: #eaeaea;
}

main {
  flex: 1;
  display: grid;
  place-content: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 32px;
}

footer {
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

h1 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
}

p {
  margin: 0;
  color: #aaa;
  line-height: 1.6;
}

code {
  color: #fff;
}

a {
  color: inherit;
}

.auth-box {
  width: 100%;
}

form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

input {
  box-sizing: border-box;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #222;
  border-radius: 10px;
  background: #111;
  color: #eaeaea;
  font: inherit;
  outline: none;
}

input:focus {
  border-color: #555;
}

button {
  padding: 14px 16px;
  border: 0;
  border-radius: 10px;
  background: #eaeaea;
  color: #0b0b0b;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #fff;
}

.status {
  margin-top: 16px;
  font-size: 0.95rem;
}

.status.error {
  color: #ff6b6b;
}

.status.success {
  color: #8cffb3;
}
