/* colors */
/* general */

.font_regular13 {
    font-size: 13px;
}

.font_regular12 {
    font-size: 12px;
}

body {
    font-family: 'Mulish';
    padding: 0;
    margin: 0;
}

    body::-webkit-scrollbar {
        width: 17px;
        height: 17px;
    }

    body::-webkit-scrollbar-track {
        background: #efeff4;
    }

    body::-webkit-scrollbar-thumb {
        background: #c7c7cc;
    }

        body::-webkit-scrollbar-thumb:hover {
            background: #b1b1b2;
        }

img {
    max-width: 100%;
    display: block;
}

a {
    color: #00B7BD;
    text-decoration: none;
}

.green {
    color: #4ace26;
}

.orange {
    color: #ffd200;
}

.red {
    color: #ff6a6a;
}

.hidden {
    display: none !important;
}

.content {
    height: calc(100vh - 40px);
}

/* inputs */
.inputgroup {
    position: relative;
}

    .inputgroup .error {
        display: none;
    }

    .inputgroup label {
        display: block;
        font-size: 12px;
        color: #aaaaaa;
    }

        .inputgroup label + input {
            margin-top: 0;
        }

            .inputgroup label + input.minwidth {
                width: auto;
                display: inline-block;
                margin-right: 10px;
            }

                .inputgroup label + input.minwidth + label {
                    display: inline-block;
                }

.readonly {
    background-color: #f5f5f5;
}

button {
    border: 0;
    background-color: white;
    height: 30px;
    padding: 0 10px;
    color: #444444;
    font-size: 13px;
    cursor: pointer;
    outline: none;
}

    button:disabled {
        opacity: 0.5;
        cursor: auto;
    }

.btnlink {
    background-color: transparent;
    height: auto !important;
    display: inline;
    color: #00B7BD;
    padding: 0;
    margin: 0;
}


input[type=text],
input[type=number],
input[type=password],
input[type=submit],
input[type="email"],
input[type="tel"] {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 30px;
    padding: 0 10px;
    color: #444444;
    font-size: 13px;
    outline: none;
    border: 1px solid #dfdfdf;
}

input::-webkit-input-placeholder {
    color: #aaaaaa;
}

input::-moz-placeholder {
    color: #aaaaaa;
}

input:-ms-input-placeholder {
    color: #aaaaaa;
}

input:-moz-placeholder {
    color: #aaaaaa;
}

input[type=submit] {
    background-color: #00B7BD;
    color: white;
    width: 100%;
    outline: none;
}

    input[type=submit]:hover {
        cursor: pointer;
    }

.inputright + label::after {
    content: ' ';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #4ace26;
    position: absolute;
    top: 13px;
    right: 10px;
    z-index: 1;
}

.inputwrong + label .error {
    display: block;
    position: absolute;
    color: #ff6a6a;
    font-size: 13px;
    background-color: white;
    z-index: 1;
    padding: 9px;
    top: 0;
    left: 100%;
    margin-left: 20px;
    width: max-content;
    width: -moz-max-content;
}

    .inputwrong + label .error::before {
        content: ' ';
        display: block;
        width: 10px;
        height: 10px;
        background-color: white;
        position: absolute;
        left: -5px;
        top: 13px;
        transform: rotate(45deg);
    }

.inputwrong + label::after {
    content: ' ';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ff6a6a;
    position: absolute;
    top: 13px;
    right: 10px;
    z-index: 1;
}

input[type="checkbox"]:checked::after {
    content: ' ';
    position: absolute;
    display: inline-block;
    left: 4px;
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid #00B7BD;
    border-width: 0px 2px 2px 0;
    transform: rotate(45deg);
}

.authpagebg {
    background-image: url('/images/bg_auth.jpg');
    height: 100vh;
    background-size: cover;
    background-position-x: center;
}

.page {
    min-width: 1024px;
    /*max-width: 1920px;*/
    margin: 0;
}

.authpage {
    display: grid;
    grid-template-columns: auto 450px;
    height: 100%;
    min-height: 600px;
}

.logo {
    position: absolute;
    max-width: 30%;
    padding: 20px;
}

.authpage .authform {
    width: 100%;
    height: 100%;
    background-color: #354658;
    padding: 30px;
}

    .authpage .authform div {
        grid-column: 2;
    }

    .authpage .authform p {
        color: white;
        text-align: center;
        font-size: 13px;
    }

    .authpage .authform .signlink {
        height: auto;
        background-color: transparent;
        color: #8cd0d2;
        text-decoration: underline;
        padding: 0;
        margin: 0;
    }

    .authpage .authform input {
        border: 0;
        height: 40px;
        margin: 10px 0;
    }

    .authpage .authform button {
        height: 40px;
    }

.authpage .inputgroup a,
.authpage .inputgroup button {
    display: block;
    position: absolute;
    top: 11px;
    right: 10px;
    color: #00B7BD;
    text-decoration: none;
    font-size: 13px;
}

.logininput {
    width: 100%;
    padding: 0 10px;
    color: #444444;
    font-size: 13px;
    outline: none;
    margin: 0 !important;
}

.form-content {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 390px;
}

.text-danger {
    color: white !important;
}

.version-content {
    position: absolute;
    bottom: 0;
    width: 390px;
}
