/* Hide most elements */
.mx_AuthPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Hide all form elements by default */
.mx_AuthPage_headerLogo + * {
    display: none !important;
}

/* Hide the username and password fields and related elements */
.mx_AuthPage form,
.mx_AuthPage_fieldRow,
.mx_AuthPage_passwordField,
[aria-label="Username"],
[aria-label="Password"],
.mx_AuthPage_btn:not([data-testid="sso-button"]),
.mx_AuthPage_links {
    display: none !important;
}

/* Keep only logo visible */
.mx_AuthPage_headerLogo {
    display: block !important;
    margin-bottom: 20px;
}

/* Keep language selector visible */
#language {
    display: block !important;
    margin-bottom: 20px;
}

/* Keep "Continue with LTA Account" button visible and style it */
[data-testid="sso-button"] {
    display: block !important;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #74d66a !important;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Optional: Center the remaining elements */
.mx_AuthPage_centered {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



