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: 2px;
}

/* NAVBAR BACKGROUND */
.sab-navbar {
    background: linear-gradient(90deg, #0b2c55, #0e3a75);
    min-height: 90px;
}

/* LOGO CONTAINER (contrast fix) */
.sab-logo-wrapper {
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO IMAGE */
.sab-logo {
    height: 46px;
    width: auto;
}

/* BUTTON STYLES */
.sab-navbar .btn-outline-light {
    border-color: rgba(255,255,255,.7);
    color: #ffffff;
}

    .sab-navbar .btn-outline-light:hover {
        background: #ffffff;
        color: #0b2c55;
    }

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .sab-navbar {
        min-height: 72px;
    }

    .sab-logo {
        height: 38px;
    }

    .sab-logo-wrapper {
        padding: 8px 14px;
        border-radius: 12px;
    }
}