html {
  font-size: 14px;
}

:root {
    --bs-primary: #ff0000;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn-primary,
.bg-primary {
    background-color: #258cfb !important;
    border-color: #258cfb !important;
}

    .btn-primary:hover,
    .bg-primary:hover {
        background-color: #157be0 !important;
        border-color: #157be0 !important;
    }

.text-primary {
    color: #258cfb !important;
}

.form-check-input:checked {
    background-color: #258cfb;
    border-color: #258cfb;
}

.form-check-input:focus {
    border-color: #258cfb;
    box-shadow: 0 0 0 0.2rem rgba(37, 140, 251, 0.25); /* Optional: subtle blue glow on focus */
}
.form-check-input:checked + .form-check-label {
    color: #258cfb;
}


.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;
}