* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0f172a;
  color: #e2e8f0;
  min-height: 100vh;
}

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.auth-card {
  background-color: #1e293b;
  padding: 32px;
  border-radius: 12px;
  width: 360px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.auth-brand h1 {
  font-size: 22px;
  margin-bottom: 8px;
}

.auth-brand p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.auth-button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #3b82f6;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.auth-button:hover {
  background-color: #2563eb;
}