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;
}

@media (max-width: 768px) {
    /* Adjusting padding, margin, and width for smaller screens */
    .col-lg-3 {
        width: 100%;
        margin-right: 0;
    }

    /* Buttons and font sizes on mobile */
    .btn {
        font-size: 18px;
        padding: 12px;
    }

    .form-control {
        font-size: 16px;
    }

    /* Reducing logo size on small screens */
    img {
        width: 80px;
        height: 80px;
    }

    /* Adjusting the layout of the error panel */
    #ErrorPanel {
        height: auto;
        margin-left: 0;
        margin-right: 0;
    }
}