body {
  font-family: system-ui, sans-serif;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}
.form-container {
  text-align: center;
  max-width: 400px;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 12px;
}
.logo {
  width: 200px;
  margin-bottom: 1rem;
}
h1 { margin-bottom: 0.5rem; }
p { color: #aaa; margin-bottom: 1rem; }
input {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 8px;
}
button {
  width: 100%;
  padding: 0.8rem;
  background: #d2b166;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
