/* Hide the "Register" link on the Keycloak login page.
   Registration is only allowed through the application's invitation flow. */
#kc-registration {
    display: none !important;
}

/* Style readonly inputs (e.g. pre-filled email from invitation) */
input[readonly] {
    background-color: #e9ecef !important;
    cursor: not-allowed;
}
