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) {
    h3 {
        font-size: 18px;
    }

    input, select, button {
        font-size: 12px;
        padding: 8px;
    }

    label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section {
        flex-direction: column;
    }

    
        /*.action-buttons {
            flex-wrap: nowrap;
            overflow-x: auto;*/ /* Enables horizontal scrolling if needed */
            /*white-space: nowrap;
        }*/
    

  
}
@media only screen and (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
        width: 80%;
    }

    .image-section {
        width: 100%; /* Make the image take full width */
        height: auto; /* Maintain aspect ratio */
        max-height: 300px; /* Limit the maximum height */
        object-fit: contain; /* Prevent the image from being cut off, maintaining the aspect ratio */
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .login-section {
        padding: 10px;
    }

    .login-button {
        font-size: 14px;
        padding: 8px;
    }
}
