/* Petit + par-dessus login.css */
.helper-text{
  text-align: center;
  margin: -0.8rem 0 1.2rem;
  color: #666;
  font-size: 0.95rem;
}

/* Toast FripWeb (simple, propre) */
.fw-toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  background: #111;
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: .2s ease;
  z-index: 9999;
  max-width: min(520px, 92vw);
  text-align: center;
}

.fw-toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.fw-toast.success{
  background: #0f766e;
}

.fw-toast.error{
  background: #b91c1c;
}
