/* Interstitial pages: redirect/logout */

/* Shared spinner animation */
@keyframes spin { to { transform: rotate(360deg); } }

/* Base spinner */
.spinner {
  border-radius: 50%;
  border: 3px solid var(--border);
  animation: spin 0.9s linear infinite;
}

/* Logout page layout */
.logout-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.logout-container .spinner {
  width: 36px;
  height: 36px;
  border-top-color: var(--text-muted);
}

/* Redirect page layout */
.redirect-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 0 16px;
}
.redirect-container .spinner {
  width: 38px;
  height: 38px;
  border-top-color: var(--primary-400);
}
