/* Style the SAML login button like Microsoft's */
#mo_saml_login_sso_button {
    background-color: #ffffff !important;   /* White background */
    color: #000000 !important;              /* Black text */
    border: 1px solid #d1d1d1 !important;   /* Light gray border */
    border-radius: 6px !important;          /* Rounded corners */
    width: 280px !important;                /* Button width */
    height: 50px !important;                /* Button height */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;                   /* Space between logo and text */
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

/* Force remove WP primary button look */
#mo_saml_login_sso_button.button,
#mo_saml_login_sso_button.button-primary {
    background: #ffffff !important;
    box-shadow: none !important;
}

/* Replace the text with "Login with Entra" */
#mo_saml_login_sso_button {
    font-size: 0 !important; /* Hide original text */
}
#mo_saml_login_sso_button::after {
    content: "Login with Entra" !important;
    font-size: 16px !important;
    color: #000000 !important;
    font-weight: 500 !important;
}

/* Replace the plugin’s lock icon with Microsoft logo */
#mo_saml_login_sso_button img {
    content: url("https://upload.wikimedia.org/wikipedia/commons/4/44/Microsoft_logo.svg") !important;
    width: 20px !important;
    height: 20px !important;
}

