body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-family: latolight;
}

.keycloak-login-info {
    color: #000;
    font-size: 16px;
    margin-bottom: 2em;
    text-align: center;
    line-height: 1.4;
    padding: 0 1em;
}

.keycloak-login-button {
    background-color: #B4B521;
    color: #fff;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-block;
    min-width: unset;
    width: unset;
}
.keycloak-login-button:hover {
    transform: scale(1.05);
}
.keycloak-login-button:active {
    transform: scale(0.95);
}