/* Request Access Page - Wider form */

.auth-card {
  max-width: 600px; /* 50% wider than default 400px */
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 80px;
  right: 20px;
  background: #10b981; /* Green for success */
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  font-weight: 500;
  font-size: 0.875rem;
  max-width: 350px;
  min-width: 250px;
}

.toast.show {
  transform: translateX(0);
}

.toast.error {
  background: #ef4444;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.toast.success {
  background: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}
