* {
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: #0f172a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
}

.auth-box {
  background: #020617;
  width: 360px;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

h1 {
  text-align: center;
  margin-bottom: 6px;
}

p {
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: none;
  background: #020617;
  color: white;
  outline: 1px solid #1e293b;
}

input:focus {
  outline: 1px solid #6366f1;
}

button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #6366f1;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #4f46e5;
}

.link {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
}

.link a {
  color: #6366f1;
  text-decoration: none;
}
