* {
  box-sizing: border-box;
}

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

.stage {
  text-align: center;
}

#wordmark {
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  color: #666;
  cursor: default;
  user-select: none;
}

.login {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 220px;
}

.login.hidden {
  display: none;
}

.login input,
.login button {
  padding: 0.5rem 0.6rem;
  background: #17171a;
  border: 1px solid #2a2a2e;
  color: #e8e8e8;
  border-radius: 4px;
  font-size: 0.9rem;
}

.login button {
  cursor: pointer;
}

.login button:hover {
  border-color: #444;
}

.error {
  color: #d9534f;
  font-size: 0.8rem;
  margin: 0;
}

.error.hidden {
  display: none;
}
