/* Persis-Anpassungen an das Keycloak-Theme */
/* Kein Background-image */
.login-pf body {
    background-image: none;
    background-color: white;
}

/* Kein box-shadow */
.card-pf {
    box-shadow: none;
    border: var(--card--border);
    border-color: var(--card--border-color);
    border-radius: var(--card--border-radius);
}

/* Persis-Farben für die Buttons */
.pf-c-button {
    --pf-c-button--m-control--hover--after--BorderBottomColor: var(--primary-active-color);
    --pf-c-button--m-control--active--after--BorderBottomColor: var(--primary-active-color);
    --pf-c-button--m-control--focus--after--BorderBottomColor: var(--primary-active-color);
}
.pf-c-button.pf-m-control:hover,
.pf-c-button.pf-m-control:focus,
.pf-c-button.pf-m-control:active {
    color: var(--primary-active-color) !important;
}

/* Head angepasst. Kein Header Text, stattdessen unseren Persis-Logo */
#kc-header {
    margin-top: 5rem;
    width: 100%;
    height: 70px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    position: relative;
}

#kc-header::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 70px;
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
}

@media screen and (max-width: 756px) {
    #kc-header::after {
        width: 150px;
    }
}

#kc-header-wrapper {
    display: none;
}

/* Sprache Dropdown-Pfeil */
button#kc-current-locale-link::after {
    content: "\203A";
    display: inline-block;
    transform: rotate(90deg);
}
