@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%;
}

/* NAVBAR */

    /* Cor do texto */
    .navbar .navbar-brand,
    .navbar .nav-link {
        color: white !important;
        font-weight: bold;
        transition: 0.3s ease-in-out;
    }

        /* Hover nos links */
        .navbar .nav-link:hover {
            color: #00A0E8 !important;
        }

/* Logo na navbar */
.navbar-brand img {
    height: 50px;
    width: auto;
    display: block;
}

/* Alinhamento navbar */
.navbar {
    background-color: #162171 !important; 
    display: flex;
    align-items: center;
    padding: 0px 0px;
}

    /* Centralização */
    .navbar .container-fluid {
        display: flex;
        align-items: center;
    }

/* Rodapé */
footer {
    background-color: #162171;
    color: white;
    /*color: #162171;*/
    text-align: center;
    font-size: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin: 0;
    bottom: 0;
    width: 100%;
    position: fixed;
}