.max-redirect-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1.125rem;
}

.max-redirect-page__spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  animation: max-redirect-spin 0.8s linear infinite;
}

@keyframes max-redirect-spin {
  to {
    transform: rotate(360deg);
  }
}
