.app-loading {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10em;
  text-align: center;
}

.app-loading p {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0d2342; /* your brand text color */
}

/* Brand loader using spinner image */
.brand-loader {
  width: 320px;
  height: 320px;
  background: url('/content/images/spinner.svg') no-repeat center center;
  background-size: 30%;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .brand-loader {
    animation: none;
  }
}
