/* Patternfly CSS places a "bg-login.jpg" as the background on this ".login-pf" class.
   This clashes with the "keycloak-bg.png' background defined on the body below.
   Therefore the Patternfly background must be set to none. */

.login-pf {
    background: none;
    background-size: cover;
    background-color: white;
    color: var(--bw-grey-95,--bw-color-foreground-primary,#2a2623)	
}

.login-pf body {
    background: white;
    color: var(--bw-grey-95,--bw-color-foreground-primary,#2a2623)
}
.card-pf {
    border: 1px solid var(--bw-color-border-subtle, #CBC6BD);
}

.pf-c-button.pf-m-primary {
    color: white;
    background-color: var(--bw-color-foreground-primary,#2a2623);
    border-radius: 3px;
}

.pf-c-button.pf-m-primary:hover, .pf-c-button.pf-m-primary:focus {
    color: var(--bw-color-foreground-primary, #2a2623);
    background-color: var(--bw-color-background-accent, #FFFC00);
    border-radius: 1px solid var(--bw-color-border-primary, #524942);
}