.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.auth-container {
  width: 100%;
  max-width: 420px;
  text-align: center;
  z-index: 1;
  padding: 40px 30px;
}

.auth-container h1 {
  margin-bottom: 30px;
  font-family: var(--font-heading);
}

.auth-container input {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  background: #1a1a1a;
  border: 1px solid var(--glass-border);
  color: white;
  border-radius: 8px;
  font-size: 15px;
}

.auth-container .btn {
  width: 100%;
  margin-top: 15px;
  font-size: 16px;
}

.error-text {
  color: #ff5555;
  margin-top: 10px;
}

.auth-container p {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.auth-container a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}