.auth-shell .auth-card {
  animation: auth-fade-in 0.35s ease-out;
}

@keyframes auth-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
