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;
}
*/

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
}

.activeProgress {
    color: green
}

.errProgress {
    color: red
}

#content-progressbar {
    padding-top: 3%;
}

input[type=text] {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
}

input[type=email] {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
}

.side-header {
    width: 70%;
    background-color: gray;
    color: white;
    box-sizing: border-box;
}

.main-content {
    width: 30%;
    background-color: white;
    box-sizing: border-box;
}

.page-layout {
    display: flex;
    min-height: 100vh; /* Hace que ambas columnas tengan el alto de la ventana */
    align-items: stretch; /* Este es el valor por defecto */
}

@media (max-width: 768px) {
    .docs {
        display: none;
    }

    .page-layout {
        flex-direction: column;
    }

    .side-header {
        width: 100%;
    }

    .main-content {
        padding: 20px;
        width: 100%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
