/* BOTON CLAVEUNICA V2 CERTIFICADO */

.btn-cu{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:4px;

    font-family:Roboto, sans-serif;
    font-weight:700;
    font-size:1rem;
    color:#FFF;
    text-decoration:none;

    background:#0F69C4;
    height:48px;
    padding:8px 14px;
    border-radius:0;
    border:none;
}

/* ICONO */
.btn-cu .cl-claveunica{
    width:24px;
    height:24px;
    background:url("../images/icons/cu-blanco.svg") no-repeat center;
    background-size:24px 24px;
}

/* HOVER */
.btn-cu:hover{
    background:#0B4E91;
    color:#FFF;
}

/* ACTIVE */
.btn-cu:active{
    background:#07305A;
}

/* FOCUS ACCESIBLE (OBLIGATORIO) */
.btn-cu:focus-visible{
    outline:4px solid #FFBE5C;
    outline-offset:2px;
}
