/* ================================================= */
/* ESTILOS DE SOBRESCRITURA PARA CL@VE MÓVIL         */
/* ================================================= */

.clave {
    /* Estilos de forma y color de btn-secondary */
    color: #131313 !important; 
    background-color: #FFFFFF !important;
    border: 2px solid #131313 !important;
    
    /* Dimensiones y padding */
    width: 300px !important;
    max-width: 300px !important;
    padding: 1px 1px !important; 

    /* Tipografía y alineación */
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    text-align: center !important;
    cursor: pointer !important;

    /* Flexbox para alinear el contenido interno (icono + texto + espaciador) */
    display: flex !important;
    justify-content: space-between !important; 
    align-items: center !important;
	margin-bottom: 25px;
}

/* ======================================= */
/* ESTILOS ESPECÍFICOS DE ICONO Y TEXTO    */
/* ======================================= */

.clave-icon {
    /* Carga la imagen del logo */
    background-image: url(../images/clave_icon.png) !important;
    width: 40px; 
    height: 40px;
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0; 
}

.clave-cert-icon {
    /* Carga la imagen del logo */
    background-image: url(../images/clave_cert_icon.png) !important;
    width: 40px; 
    height: 40px;
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0; 
}

.clave-text {
    flex-grow: 1; 
}

/* El espaciador debe tener el mismo ancho que el icono. */
.clave-spacer {
    width: 40px; 
	flex-shrink: 0; 
}

.idp-box {
    margin-top: 32px;
    padding-top: 32px;
	margin-bottom: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #C2C2C2;
}