/* 1. Hide the specific Login form */
/* We target the form by checking if it contains a button with value="Log In" */
form:has(input[value="Log In"]) {
    display: none !important;
}

/* 2. Optional: Center the SSO button if it looks off-center */
/* The SSO button is inside a <p> tag */
p:has(a[href="/auth/oidc"]) {
    text-align: center;
    margin-top: 20px;
}
