/* colors */
/* general */

.font_regular13 {
    font-size: 13px;
}

.font_regular12 {
    font-size: 12px;
}

body {
    font-family: 'Open Sans', sans-serif;
    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: #2471be;
    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: #2471be;
    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: #f89219;
    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 #f89219;
    border-width: 0px 2px 2px 0;
    transform: rotate(45deg);
}
.authpagebg {
    background-image: url('/images/bg_auth.png');
    height: 100%;
    background-size: cover;
    background-position-x: center;
    -webkit-animation: floatBubble 10s normal ease-out;
    animation: floatBubble 10s normal ease-out;
    background-position-y: -100px;
}

@-webkit-keyframes floatBubble {
    0% {
        background-position-y: 0px;
    }

    100% {
        background-position-y: -100px;
    }
}

@keyframes floatBubble {
    0% {
        background-position-y: 0px;
    }

    100% {
        background-position-y: -100px;
    }
}

.authpagebgmask {
    background-image: url('/images/BGMask.png');
    height: 100%;
    background-size: cover;
    background-position-x: center;
}


.authpage {
    display: grid;
    grid-template-rows: 80px auto 100px;
    height: 100vh;
    min-height: 600px;
    padding: 0 20px;
}

.authpage .header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    margin-top: 15px;
    width: calc(100% - 40px);
    z-index: 1;
}

.authpage .logo {
    justify-self: left;
    cursor: pointer;
}

.authpage .langs {
    justify-self: right;
    height: 40px;
    width: 100px;
}

.authpage .langs::after {
    border: 5px solid transparent;
    border-top: 5px solid #2471be;
}

.authpage .langs:hover::after {
    border: 5px solid transparent;
    border-bottom: 5px solid #2471be;
}

.authpage .authform {
    display: grid;
    align-items: center;
    position: absolute;
    width: calc(100% - 30px);
    height: 100%;
    align-content: center;
    justify-content: center;
    z-index: 0;
}

.authpage .authform p {
    color: white;
    text-align: center;
    font-size: 13px;
}

.authpage .authform .signlink {
    height: auto;
    background-color: transparent;
    color: #fff4e5;
    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: #2471be;
    text-decoration: none;
    font-size: 13px;
}

.authpage .footer {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    align-items: center;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px);
    z-index: 1;
}

.authpage .footer a {
    display: inline-block;
    width: 150px;
    height: 50px;
    margin: 0 10px;
}

.authpage .footer .links {
    grid-column: 2;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px;
    justify-content: center;
}

.authpage .footer .support {
    grid-column: 3;
    justify-self: right;
}

.authpage .footer .support button {
    height: 40px;
}

.logininput {
    width: 100%;
    padding: 0 10px;
    color: #444444;
    font-size: 13px;
    outline: none;
    margin: 0 !important;
}

.text-danger {
    background: white;
}

@media (min-width: 1000px) {
    .page {
        min-width: 1280px;
        margin: 0 auto;
    }

    .authpagebgmask {
        min-width: 1280px;
    }

    .authpagebg {
        min-width: 1280px;
    }

    .authpage .authform {
        grid-template-columns: 1fr 400px 1fr;
    }
    .authpage .authform div {
        grid-column: 2;
    }
}


@media (max-width: 1000px) 
{
    .authpagebg {
        min-width: 400px;
    }
    .authpage .authform {
        grid-template-columns: 100%;
    }


}
