/* Variables de colores */
:root {
    --primary-color: #0F384F;
    --secondary-color: #06486E;
    --three-color: #1585C2;
}

/* boton login*/
.btn-amarillo {
    background: var(--three-color) !important;
    color: #fff;
}
.btn-amarillo:hover, .btn-amarillo:active {
    background: var(--secondary-color) !important;
    color: #fff;
}

.btn-calipso { 
    background: var(--primary-color) !important;
    color: #fff;
}

.btn-calipso:hover, .btn-calipso:active {
    background: var(--secondary-color) !important;
    color: #fff;
}
