﻿body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #212121;
}

.login {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    height: 100vh;
}

#login-header {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: 100%;
    z-index: 1;
    height: 60px;
}

    #login-header > figure,
    #login-header > figure > img {
        height: 100%;
    }

.login-field {
    position: absolute;
    width: 350px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease;
}

    .login-field.ready {
        visibility: visible;
        opacity: 1;
    }

#login-form {
    position: relative;
}

.login-brand {
    transition: transform .25s ease;
    will-change: transform;
}

.has-error .login-brand {
    transform: translateY(-60px);
}

.login-brand > figure {
    position: relative;
    height: 100%;
    width: 100%;
}

    .login-brand > figure > img {
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, 0%);
        max-height: 100%;
        max-width: 100%;
    }

.login-alert {
    top: 0;
    left: 0;
    display: flex;
    height: 0;
    width: 100%;
    background-color: #fc4242;
    color: #ffffff;
    align-items: center;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all .25s ease;
}

.has-error .login-alert {
    height: 50px;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
    top: -60px;
}

.login-alert-icon {
    font-size: 2rem;
    /*background-color: rgba(0, 0, 0, .1);*/
    width: 50px;
    height: 100%;
    margin-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 2;
}

.login-input-group {
    position: relative;
    width: 100%;
    height: 40px;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #FFFFFF;
}

    .login-input-group > .login-input {
        border: none;
        overflow: hidden;
        padding: 1rem 40px 1rem 1rem;
        width: 100%;
        height: 100%;
        outline: none;
        background-color: transparent;
    }

.login-input-group-append {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.login-btn {
    position: relative;
    border: none;
    color: #FFFFFF;
    overflow: hidden;
    padding: 0;
    text-transform: uppercase;
    width: 100%;
    height: 40px;
    outline: none;
}

#login-forgot-password {
    text-align: center;
    margin-top: 1rem;
}

    #login-forgot-password > a {
        color: inherit;
        font-weight: 600;
        font-size: 1.3rem;
    }

.login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
}

    .login-separator::before,
    .login-separator::after {
        content: "";
        display: block;
        top: 5px;
        height: 1px;
        width: 100%;
        background-color: rgba(0, 0, 0, .2);
    }

    .login-separator::before {
        margin-right: 10px;
    }

    .login-separator::after {
        margin-left: 10px;
    }

.login-btn-google {
    height: auto;
    width: 100%;
    cursor: pointer;
    background-image: url(svg/google-logo.svg);
    background-size: 2.5rem 2.5rem;
    background-position: 1rem;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    border: none;
    padding: 1rem;
    text-transform: uppercase;
}

#video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    max-width: none;
    z-index: -1000;
    -webkit-animation: fadeIn .5s;
    animation: fadeIn .5s;
}

#image-background {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-animation: fadeIn .25s;
    animation: fadeIn .25s;
}

.login-alert,
.login-form,
.login-btn-google {
    box-shadow: 0 1px 1px rgba(0,0,0,.16);
}

.login-alert,
.login-form,
.login-input-group,
.login-btn {
    border-radius: 2px;
}

.cookiePolicyContainer {
    margin-top: 100px;
}

.cookiePolicyContainer--maxWidth {
    max-width: 500px;
    margin: 100px auto 0;
}

.cookie-wrapper {
    position: fixed;
    bottom: 0;
    z-index: 100;
    width: 100%;
    color: #b0b0b0;
    background: #4c4c4c;
}

.cookie-content {
    padding: 20px;
}

#login-footer {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    width: 100%;
    z-index: 1;
}

    #login-footer > span {
        font-size: 11px;
        color: #ffffff;
    }


.login-wrapper .has-error .login-alert {
    position: initial;
    height: auto;
    padding: 1rem;
    margin-bottom: 2rem;
}

.login-wrapper .has-error .login-brand {
    transform: none;
}

.flex-aligned-justified-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-100 {
    width: 100% !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row {
    flex-direction: row !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-1-5 {
    margin-bottom: 1.5rem !important;
}

.font-size-1-5 {
    font-size: 1.5rem !important;
}

.text-align-center {
    text-align: center !important;
}

.font-weight-bold {
    font-weight: 600 !important;
}

.block {
    padding: 1rem;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
}

/* Mobil alkalmazás információk */

.app-infos {
    margin: 0.5rem -0.5rem -0.5rem -0.5rem;
}

    .app-infos * {
        font-size: 12px;
    }

.app-stores {
    display: flex;
}

.app-info,
.app-info:hover,
.app-info:visited,
.app-info:active {
    padding: 1rem;
    border-radius: 2px;
    display: flex;
    flex: 1;
    background-color: #ffffff;
    color: #000000 !important;
    margin: 0.5rem;
    text-decoration: none !important;
    transition: background-color 0.1s ease-in-out
}

a.app-info:hover {
    background-color: #eeeeee;
}

.app-info-logo {
    width: 3rem;
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

#qrcode {
    pointer-events: none !important;
}

.mobile-deeplink {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    text-transform: uppercase;
    border-radius: 2px;
    font-size: 14px;
    outline: 0 !important;
    outline-offset: 0 !important;
    text-decoration: none !important;
    background-color: #2196F3;
    color: #ffffff !important;
}

.g-recaptcha--own {
    margin-top: 10px;
    margin-bottom: 10px;
}

    .g-recaptcha--own > div {
        margin: 0 auto;
    }
