html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .col-md-6 {
        width: 100%;
    }
}

.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;
}


html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.border-bottom {
    border-bottom: 0px !important;
}

.main-container {
    flex: 1 0 auto;
    padding: 20px 0;
    width: 100%;
}

@media (max-width: 768px) {
    .main-container {
        padding: 10px;
    }
}




.footer {
    flex-shrink: 0;
    padding: 15px 0;
    background-color: #f8f9fa;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 576px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

@media (max-width: 1200px) {
    .content-wrapper {
        max-width: 100%;
    }
}