@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px);}
  to   { opacity: 0.9; transform: translateY(0);}
}
.flash-message {
  animation: fade-in 0.3s;
  transition: opacity 0.5s;
}
