body{
overflow:hidden;
}

.auth-section {
  background-color: #0f172a;
  color: #e2e8f0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-title {
  text-align: center;
  color: #c084fc;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

.auth-form label {
  font-weight: 500;
}

.auth-form input {
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #1e293b;
  color: #f8fafc;
}

.auth-button {
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #7c3aed;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-button:hover {
  background-color: #6d28d9;
}

.auth-switch {
  text-align: center;
  margin-top: 1rem;
}

.auth-switch a {
  color: #c084fc;
  text-decoration: underline;
}
