.container {
    display: flex;
    flex-direction: column;
    height: 100%;

}

.container-img {
    margin: auto;
    align-content: center;
}

.img-login {
    height: 115px;
    width: 90px;
}

.btn-is {
    font-size: 16px;
    /* Tamaño de fuente */
    font-weight: bold;
    /* Negrita */
}

.btn-turquoise {
    background-color: #1f6281 !important;
    border-color: #40e0d0;
    font-weight: bold;
    /* Agregamos negrita */
    font-style: normal;
    /* Aseguramos que no esté en cursiva */
    color: white;
    /* Cambiamos el color del texto a blanco */
    text-transform: none;
    font-size: 14px;
    /* Tamaño de fuente */

}

.btn-turquoise:hover {
    background-color: #2159c2 !important;
    border-color: #2159c2;

}

.card-header {

    background-color: #1f6281 !important;
    /* Color turquesa */
    color: white;
    border: none;
    height: 60px !important;
}

.main-card {
    width: 100% !important;
    height: 700px !important;
}


.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px !important;
}

.cuadro input[type="checkbox"] {
    display: none;
}

.cuadro input[type="checkbox"]+label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
}

.cuadro input[type="checkbox"]+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 3px;
}

.cuadro input[type="checkbox"]:checked+label:before {
    content: '\2714';
    font-size: 14px;
    color: #fff;
    background-color: #1f6281;
    border-color: #1f6281;
}

.recordar-label {
    margin-top: 6px;
    margin-left: 9px;
}

.footer {
    margin-bottom: auto;
}








