﻿body {
    background: url('Images/brana_pozadi.png') center no-repeat;
    font: normal 14px "Roboto Flex";
    line-height: 18px;
    padding: 0px;
    margin: 0px;
}

@media only screen and (min-width: 768px) {

    body {
    }

    .wrapper {
        background: rgba(0,0,0,.18);
        height: 100vh;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .loginForm {
        width: 480px;
        min-height: 488px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr auto;
        grid-template-areas:
            "header content content"
            "header content content"
            "header footer footer";
    }

        .loginForm .header {
            grid-area: header;
            background: url('Images/fip_logo.png') center no-repeat #00A7B8;
            background-size: 115px auto;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .loginForm .content {
            grid-area: content;
            background-color: #ffffff;
            padding: 16px;
            border-top-right-radius: 10px;
        }

        .loginForm .footer {
            grid-area: footer;
            background-color: #ffffff;
            padding: 16px;
            border-bottom-right-radius: 10px;
        }

    .loginFormSelect {
        width: 480px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        grid-template-areas:
            "header content content";
    }

        .loginFormSelect .header {
            grid-area: header;
            background: url('Images/fip_logo.png') center no-repeat #00A7B8;
            background-size: 115px auto;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .loginFormSelect .content {
            grid-area: content;
            background-color: #ffffff;
            padding: 16px;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }
}

@media only screen and (min-width: 1439px) {
    .loginForm {
        max-width: 580px;
        min-width: 520px;
    }

    .loginFormSelect {
        max-width: 580px;
        min-width: 520px;
    }
}

@media only screen and (min-width: 1919px) {
    .loginForm {
        width: 600px;
    }

    .loginFormSelect {
        width: 600px;
    }
}

@media only screen and (max-width: 767px) {

    body {
    }

    .wrapper {
        background: rgba(0,0,0,.18);
        height: 100vh;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .loginForm {
        width: 360px;
        min-height: 696px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr auto;
        grid-template-areas:
            "header"
            "content"
            "content"
            "footer";
    }

        .loginForm .header {
            grid-area: header;
            background: url('Images/fip_logo.png') center no-repeat #00A7B8;
            background-size: 66px auto;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .loginForm .content {
            grid-area: content;
            background-color: #ffffff;
            padding: 16px;
        }

        .loginForm .footer {
            grid-area: footer;
            background-color: #ffffff;
            padding: 16px;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

    .loginFormSelect {
        width: 360px;
        min-height: 696px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas:
            "header"
            "content"
            "content";
    }

        .loginFormSelect .header {
            grid-area: header;
            background: url('Images/fip_logo.png') center no-repeat #00A7B8;
            background-size: 66px auto;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .loginFormSelect .content {
            grid-area: content;
            background-color: #ffffff;
            padding: 16px;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }
}

@media only screen and (max-width: 569px) {
    .wrapper {
        width: 75%;
    }
}

@media only screen and (max-width: 460px) {
    .wrapper {
        width: 100%;
    }

    .loginForm {
        width: 100%;
        height: 100%;
    }

        .loginForm .header {
            border-top-left-radius: 0px;
            border-top-right-radius: 0px;
        }

        .loginForm .footer {
            border-bottom-left-radius: 0px;
            border-bottom-right-radius: 0px;
        }

    .loginFormSelect {
        width: 100%;
        height: 100%;
    }

        .loginFormSelect .header {
            border-top-left-radius: 0px;
            border-top-right-radius: 0px;
        }

        .loginFormSelect .footer {
            border-bottom-left-radius: 0px;
            border-bottom-right-radius: 0px;
        }
}

.w50p {
    width: 50%;
}

.w100p {
    width: 100%;
}

.flexImage {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

    .flexImage .keyLogo {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        background: url('Images/klic.png') center no-repeat;
    }

    .flexImage .smsIcon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        background: url('Images/sms_icon.png') center no-repeat;
    }

    .flexImage .captchaIcon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        background: url('Images/captcha_icon.png') center no-repeat;
    }



.flexColumn {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flexBtn {
    display: flex;
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .flexBtn {
        flex-direction: row-reverse;
        align-items: center;
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .flexBtn {
        flex-direction: column;
        gap: 15px;
    }
}

.mtop20 {
    margin-top: 20px;
}

.minHeight20 {
    min-height: 20px;
    line-height: 20px;
}

.tyrkys {
    color: #00A7B8;
}

.secondary {
    color: #859294;
}

.red {
    color: #F33B12;
}

h1 {
    font-size: 21px;
    font-weight: 600;
    line-height: 26px;
    margin: 10px 0px;
}

h2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}

.acenter {
    text-align: center;
}

.checkBox18 input[type=checkbox] {
    display: flex;
    line-height: 18px;
    width: 18px;
    height: 18px;
    background-image: url("Images/checkbox_icon.png") !important;
}

    .checkBox18 input[type=checkbox]:checked {
        display: flex;
        line-height: 18px;
        width: 18px;
        height: 18px;
        background-image: url("Images/checkbox_checked_icon.png") !important;
    }

.inputText {
    box-sizing: border-box;
    outline: none;
    background: rgba(133, 146, 148, 0.08);
    padding: 0 12px;
    height: 47px;
    border-radius: 8px;
    border: 1px solid rgba(133, 146, 148, 0.16);
    margin: 0;
}

    .inputText:focus {
        border: 2px solid #00A7B8;
        margin: 0px;
        border-color: #00A7B8;
    }

    .inputText::placeholder {
        color: #B7B7B7;
    }

.btn {
    border-radius: 8px;
    height: 48px;
    padding: 0 12px;
    text-align: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
}

    .btn.btnPrimary {
        color: #ffffff;
        background-color: #00A7B8;
    }

        .btn.btnPrimary:disabled {
            opacity: 0.5;
        }

    .btn.btnSecondary {
        color: #1E2829;
        background-color: #ffffff;
        border: 1px solid #CFD8DC;
    }

    .btn .m365Icon {
        display: inline-block;
        width: 24px;
        height: 24px;
        margin-right: 8px;
        flex-shrink: 0;
        background-image: url('Images/microsoft_icon.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .btn.btnWithIcon {
        background: #ffffff;
        color: #1E2829;
    }

@media only screen and (min-width: 768px) {
    .btn.responsiveWidth {
        flex: 7;
    }

    .btn.responsiveWidthSec {
        flex: 3;
    }
}

@media only screen and (max-width: 767px) {
    .btn.responsiveWidth,
    .btn.responsiveWidthSec {
        width: 100%;
        flex: none;
    }
}

b {
    font-weight: bolder;
}

.accountList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accountCardLink {
    display: block;
    text-decoration: none;
    color: inherit;
}

.accountCard {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid #CFD8DC;
    border-radius: 8px;
    background: #ffffff;
    line-height: 18px;
    text-align: center;
    color: #1E2829;
}

.accountCardId {
    color: #737E80;
    padding-left: 5px;
}

.accountCardLinkDisabled {
    cursor: not-allowed;
    pointer-events: none;
}

.accountCardDisabled {
    flex-wrap: wrap;
    background: #F4F6F7;
    color: #737E80;
    border-color: #E0E5E7;
    opacity: 0.75;
}

    .accountCardDisabled .accountCardId {
        color: #95A0A2;
    }

.accountCardBlockedMsg {
    flex-basis: 100%;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: #C0392B;
    text-align: center;
}

.selectBackIcon {
    font-size: 18px;
    line-height: 1;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}

    .separator::before,
    .separator::after {
        content: "";
        flex-grow: 1;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.24);
    }

    .separator::before {
        margin-right: 15px;
    }

    .separator::after {
        margin-left: 15px;
    }