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;
}

:root {
    --bs-primary: #7F207F;
    --bs-primary-rgb: 127, 32, 127;
    /* Optional: contrast-safe text color for primary backgrounds */
    --bs-primary-text: #ffffff;
}

/* Utility classes if you're not using Bootstrap */
.bg-primary, .btn-primary {
    background-color: var(--bs-primary) !important;
    color: var(--bs-primary-text, #fff);
}

.text-primary {
    color: var(--bs-primary) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.btn-white {
    background-color: white;
    color: var(--bs-primary);
}

/* Honeypot container: keep in DOM for bots; hide from users and AT focus */
.hp-container {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}