#auth-section {
  background: #f5f5f5;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  max-width: 400px;
  
}

#auth-section label {
  display: block;
  margin-top: 0.5rem;
}

#auth-section input {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  box-sizing: border-box;
}

.auth-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.auth-buttons button {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

#auth-status {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

#auth-status.success {
  background: #d4edda;
  color: #155724;
}

#auth-status.error {
  background: #f8d7da;
  color: #721c24;
}