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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* PrepJolt global loader styles */
.pj-loader {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000; /* above bootstrap modals (1050) */
  pointer-events: none; /* By default let clicks through when hidden */
}
.pj-loader-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
}
.pj-loader-center {
  position: relative;
  z-index: 1;
  outline: none;
}
.pj-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.02);
  color: #fff;
  max-width: 90vw;
  width: min(480px, 85%);
  text-align: center;
  pointer-events: auto; /* enable focusing traps inside when visible */
  border-radius: 8px;
}
.pj-loader-svg {
  width: 72px;
  height: 72px;
  color: #ffffff;
}
.pj-loader-text {
  font-size: 1rem;
  color: #ffffff;
}
.pj-loader-hidden { display: none; }
.pj-loader-visible {
  display: flex;
  pointer-events: auto; /* block interaction with page */
}
/* Error panel styles */
.pj-loader-error-panel { max-width: 420px; }
.pj-loader-error-icon { font-size: 2rem; }
.pj-loader-error-text { margin-top: 0.25rem; color: #ffdede; }
.pj-loader-error-actions { margin-top: 0.5rem; display:flex; justify-content:center; }

@media (max-width: 480px) {
  .pj-loader-svg { width: 56px; height: 56px; }
  .pj-loader-inner { padding: 0.75rem; }
}