/* =============================================
   LuxTool — /generators/password-tool/password-tool.css
   Tool-specific styles unique to this tool. Site chrome and
   every shared building block used on this page come from
   /style.css, which this page also loads.
   ============================================= */

/* ── Password Tool Enhanced ── */
.pw-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #1e293b;
  border: 1px solid rgba(251, 191, 36, .35);
  color: var(--gold);
  padding: .45rem 1.1rem;
  border-radius: 2rem;
  font-size: .84rem;
  z-index: 9999;
  animation: pwToastIn .25s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

@keyframes pwToastIn {
  from {
    transform: translateX(-50%) translateY(.8rem);
    opacity: 0
  }

  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1
  }
}
