@import url('https://fonts.googleapis.com/css?family=Open+Sans&subset=cyrillic');
/* 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: 0;
    border-width: 0 0 2px;

    -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
    box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
}

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: #FFC619;
    font-weight: bold;
    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 {
    height: 100vh;
    width: 100%;
    min-width: 1280px;

    display: grid;
    grid-template-columns: auto 450px;

    padding: 3px;
}
.left_auth {
    width: 100%;
}

.left_main {
    background: url('/LoginBg/0');
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position-x: center;
    padding: 50px;
    display: grid;
    grid-template-rows: auto 350px;
}

.left_auth .left_text {
}
.left_auth h1 {
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.left_auth h2
{
    color: white;
    font-size: 34px;
    font-weight: bold;
}

.left_auth h3
{
    color: white;
    font-size: 28px;
}
.left_auth p
{
    color: white;
    font-size: 20px;
}

.authpage {
    width: 100%;
    right: 0;
    display: grid;
    grid-template-rows: 120px auto 100px;
    height: calc(100%);
    min-height: 600px;
    padding: 0 50px;
    background-color: white;
}

.authpage .header {
    width: 100%;
}

.authpage .logo {
    justify-self: center;
    cursor: pointer;
    padding-top: 100px;
}
.authpage .logo img{
    width: 100%;
}

.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 .auth_title {
    padding-bottom: 30px;
}

.authpage .authform {
    display: grid;
    grid-template-columns: 1fr 330px 1fr;
    align-items: center;
}

.authpage .authform div {
    grid-column: 2;
}

.authpage .authform p {
    text-align: center;
    font-size: 13px;
}

.authpage .authform .signlink {
    height: auto;
    background-color: transparent;
    color: darkslategrey;
    text-decoration: underline;
    padding: 0;
    margin: 0;
}

.authpage .authform input {
    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 {
    color: darkslategrey;
    text-align: center;
}

.authpage .footer .support {
    grid-column: 3;
    justify-self: right;

}

.support
{
    position: absolute;
    bottom: 150px;
}

.support button {
    background-color: #FFC619;
    font-weight: bold;
}

.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;
}
