/* Replace SSO button text while preserving all styles */

.mx_SSOButton.mx_SSOButton_primary {
    position: relative !important;
}

/* Hide original text content only */
.mx_SSOButton.mx_SSOButton_primary {
    text-indent: -9999px !important;
    overflow: hidden !important;
}

/* Add custom text that inherits button color */
.mx_SSOButton.mx_SSOButton_primary::after {
    content: 'Get Started' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-indent: 0 !important;
    display: block !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}
