.loginscreen{
    width:100%;
    height:100%;
    position:absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginHolder{
    max-width:475px;
    height:560px;
    width:50%;
    text-align:center;
}

.login-container{
    /*min-height: 100vh;*/
    /*background-color: #ffffff;*/
    font-weight: 400;
}

.login-main{
    height: 100vh;
    min-height: 100vh;
    align-items: center;
}

.login-text-background {
    background-color: #fff;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.link-faq{
    color: #2daae2;
}

.error-message-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
}

.error-message {
    max-width: 600px;
}

.error-message h4 {
    font-weight: 700;
    color: #FF0000;
}

.procedure ol {
    padding-left: 1em;
}

.procedure li::marker{
    font-weight: 600;
    font-family: "Roboto ", sans-serif;
}

.procedure li {
    width: 80%;
    margin-bottom: 10px;
}

.login-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.login-logo-holder-position{
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.login-logo{
    max-width: 220px;
}

.text-regular{
    font-weight: 400!important;
}


.login-logo-holder,
.auth-form{
    max-width: 400px;
    width: 100%;
    margin: 30px clamp(20px, 80px, 80px);
}

.login-logo-holder{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #575757;
    font-weight: 400;
    width: unset;
    max-width: 100%;
}

.login-zona{
    font-size: 24px;
    color: #575757;
}

.login-type{
    font-size: 30px;
}

.login-img-background{
    background-image: url(../images/bannerhero2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    min-height: 100%;
    position: relative;
}

.login-container h2{
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 700;
}

.text-grey {
    color: #6A6C71;
}

.primary-link{
    color: #2daae2;
    font-weight: 600;
}

.btn-primary,
.btn-primary:not([disabled]):not(.disabled):active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #2daae2 !important;
    color: #fff;
    border: 1px solid #2daae2;
    font-weight: 500;
    vertical-align: bottom;
    box-shadow: none;
    padding: 0.5rem 1.5rem 0.5rem;
    font-size: 1rem;
    line-height: 1;
    border-radius: 0.25rem;
    text-align: center;
    text-decoration: none;
    user-select: none;
    margin: 0;
}

.desktop-only{
    display: block!important;
}

.mobile-only{
    display: none!important;
}

.accordion-holder{
    width: 100%;
    max-width: 770px;
}

.accordion.caste-otazky{
    h5{
        font-size: 18px;
        font-weight: 600;
        color: #2daae2;
    }

    .card-body p{
        font-size: 15px;
        color: #000000;
    }
}

/*media under */
@media (max-width: 991px) {

    .desktop-only{
        display: none!important;
    }

    .mobile-only{
        display: block!important;
    }

    .login-main{
        display: block;
        margin: 0;
    }

    .mobile-logo-holder{
        width: 100%;
    }

    .mobile-bottom-links {
        width: 100%;
        display: flex!important;
        justify-content: space-between;
    }

}

@media (max-width: 576px) {

    .login-logo-holder,
    .auth-form{
        margin: 30px 20px;
    }

}

