*, *:before, *:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(76, 89, 100, 1) 0%, rgba(33, 43, 51, 1) 100%);
    font-family: 'Barlow', sans-serif !important;
}
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: url('../img/background.svg') no-repeat bottom right;
}
.login-card {
    display: flex;
    width: 800px;
    min-height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.login-card-wide {
    width: min(1200px, 90vw);
}
.login-left {
    width: 325px;
    background: url('../img/card-img.jpg') center center;
    background-size: cover;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    border-right: solid 4px #3A9BB1;
}
.login-right {
    flex: 1;
    background: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.brand-logo {
    width: 90px;
    height: auto;
    margin: 0;
}
.brand-slogan {
    font-size: 26px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    position: relative;
    bottom: -60px;
    opacity: 0;
    transition: all .3s;
    animation: 1s .25s slideUp ease forwards;
    user-select: none;
    line-height: 1.1;

    strong {
        font-weight: 700;
    }
}
.language-select {
    position: absolute;
    padding: 20px;
    top: 0;
    right: 0;
}

@keyframes slideUp {
    0% {
        bottom: -60px;
        opacity: 0;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}
.login-header {
    margin-bottom: 50px;
}
.welcome-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 0.25rem;
    line-height: 1;
    color:rgb(54, 54, 54);
}
.signin-text {
    line-height: 1.1;
    font-weight: 300;
    font-size: 16px;
    margin: 0;
    color: rgb(54, 54, 54);
}
div#kc-content {
    flex: 1;
    display: flex;
    align-items: flex-end;
}
div#kc-content-wrapper {
    flex: 1;
}

#kc-header, .kcFormHeaderClass {
    display: none !important;
}

.hidden-iframe {
    display: none;
}
