@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#taranis-login-logo path {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out both;
}

#taranis-login-logo path:nth-of-type(1) {
  animation-delay: 0s;
}

#taranis-login-logo path:nth-of-type(2) {
  animation-delay: 0.1s;
}

#taranis-login-logo path:nth-of-type(3) {
  animation-delay: 0.2s;
}

#taranis-login-logo path:nth-of-type(4) {
  animation-delay: 0.3s;
}

#taranis-login-logo path:nth-of-type(5) {
  animation-delay: 0.4s;
}

#taranis-login-logo path:nth-of-type(6) {
  animation-delay: 0.5s;
}

#taranis-login-logo path:nth-of-type(7) {
  animation-delay: 0.6s;
}

#taranis-login-logo path:nth-of-type(8) {
  animation-delay: 0.7s;
}

#taranis-login-logo path:nth-of-type(9) {
  animation-delay: 0.8s;
}

#taranis-login-logo path:nth-of-type(10) {
  animation-delay: 0.9s;
}

#taranis-login-logo path:nth-of-type(11) {
  animation-delay: 1s;
}

#taranis-login-logo path:nth-of-type(12) {
  animation-delay: 1.1s;
}

@media (prefers-reduced-motion: reduce) {
  #taranis-login-logo path {
    animation: none;
    opacity: 1;
  }
}
