html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn {
    background-color: #00B0F0;
}

.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 #00B0F0;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    display: flex;
    margin: 0;
}

.logo {
    width: 100%;
    height: auto;
    max-width: 250px; /* Tamaño máximo */
    min-width: 125px; /* Tamaño mínimo */
}


    /*Barra lateral a la izquierda*/

    .sidebar {
    width: 200px;
    background-color: #000;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

    .sidebar a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
    }

        .sidebar a:hover {
            background-color: #444;
        }

        .submenu {
            display: none;
            flex-direction: column;
        }

        .submenu a {
            padding-left: 20px;
        }

.content {
    flex-grow: 1;
    padding: 20px;
}

.navbar-brand img {
    max-height: 40px;
}

/*Login Properties*/ 

.card {
    margin-top: 2rem;
}

.card-header {
    background-color: #00B0F0;
    color: #fff;
}