body {
  background: inherit;
}

.fast-start-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  background: rgba(79, 70, 229, 0.95);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 9999;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.fast-start-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fast-start-toast--error {
  background: rgba(220, 38, 38, 0.95);
}

.password-toggle-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 0.5rem;
  color: rgba(148, 163, 184, 0.78);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  font-size: 1rem;
}

.password-toggle-btn:hover {
  color: rgba(148, 163, 184, 1);
}

.password-toggle-btn:focus {
  outline: none;
  color: rgba(59, 130, 246, 0.9);
}

html[data-bs-theme="light"] .password-toggle-btn {
  color: rgba(71, 85, 105, 0.7);
}

html[data-bs-theme="light"] .password-toggle-btn:hover {
  color: rgba(71, 85, 105, 1);
}
