html {
  font-size: 14px;
  min-height: 100%:
}

@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 {
    background: #f5f7fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;



}

.logo {
    height: 90px;
}

.logo1 {
    height: 110px;
    border: 1px solid #ccc;
}

.logo2 {
    height: 200px;
    border: 1px solid #ccc;
}
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.08);
}

.btn-primary {
    background: #0d6efd;
    border-color: #0d6efd;
}



h1, h2, h3 {
    color: #1f3558;
}

body > .container{
    flex: 1 0 auto;
}

.footer {
    position: static;
    width: 100%;
    white-space: normal;
    line-height: normal;
    padding: 15px 0;
    margin-top: auto;
    flex-shrink: 0;
}

    .footer .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 6px 16px;
    }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

@media (max-width: 576px) {
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}