@keyframes accountFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.account-fade-in {
  animation: accountFadeIn 420ms ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  .account-fade-in {
    animation: none;
  }
}
