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;
}

/* Custom primary color */
.btn-primary {
    background-color: #990707 !important;
    border-color: #990707 !important;
    color: #ffffff !important;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary:not(:disabled):not(.disabled).active {
        background-color: #7a0505 !important;
        border-color: #7a0505 !important;
        color: #ffffff !important;
    }

    .btn-primary:focus {
        box-shadow: 0 0 0 0.25rem rgba(153,7,7,0.25) !important;
    }

.btn-outline-primary {
    color: #990707 !important;
    border-color: #990707 !important;
}

    .btn-outline-primary:hover {
        background-color: #990707 !important;
        color: #ffffff !important;
    }

/* Brand title color */
.brand-title {
    color: #990707;
}

/* Login header logo sizing and responsive behavior */
.login-logo {
    height: 64px;
}

@media (max-width: 767.98px) {
    .login-logo {
        height: 80px;
        display: block;
        margin: 0 auto 8px auto;
    }

    .brand-title {
        text-align: center;
    }
}