@keyframes hub-loader-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(21, 94, 239, 0.2);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(21, 94, 239, 0.3);
  }
}

.app-loading {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 30vh;
  color: #475467;
}
.app-loading p {
  display: block;
  font-size: 0.875rem;
  margin-inline-start: 0;
  margin-inline-end: 0;
  font-weight: 500;
}

.app-loading .hub-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: #fff;
  background: #155eef;
  border-radius: 0.75rem;
  animation: hub-loader-pulse 1.4s ease-in-out infinite;
}

.app-loading .hub-loader svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentcolor;
}
