html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.app-global-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(3px);
}

.app-global-loader.is-visible {
  display: flex;
}

.app-global-loader__card {
  min-width: min(92vw, 340px);
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.app-global-loader__spinner {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border: 0.35rem solid rgba(13, 110, 253, 0.18);
  border-top-color: #0d6efd;
  border-radius: 50%;
  animation: app-global-loader-spin 0.8s linear infinite;
}

.app-global-loader__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.app-global-loader__text {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
}

@keyframes app-global-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-global-loader__spinner {
    animation-duration: 1.6s;
  }
}
