.h1 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    margin: 10px 0 0;
}

.auth-page {
    height: 100vh;
    background: url(../images/login-bg.jpg) no-repeat center/cover;
    position: relative;
    background-size: cover;
    overflow: hidden;
}

/* .auth-page:before {
    background: var(--background);
    background: linear-gradient(90deg, var(--background) 0%, transparent 500%);
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.auth-page:after {
    background: var(--background);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
} */

.auth-page .container {
    max-width: fit-content;
    margin-left: 0;
    padding: 0;
    overflow: hidden;
}

.auth-page_container {
    justify-content: center;
    margin-left: 20px;
    height: 100vh;
    background-color: #fff;
    padding: 60px 100px 60px 60px;
    overflow-y: auto;
    max-height: 100%;
    position: relative;
}

.auth-page_outer {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
}

.auth-page__logo {
    max-width: 134px;
    height: auto;
}

.auth-page_box-form {
    background: #fff;
    width: 100%;
    min-width: 300px;
    max-width: 400px;
    border-radius: 12px;
}

.auth-wrapper__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.auth-page__title {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    color: #232935;
}

.auth-page__title span {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    color: #9CA4B2;
    display: block;
    margin-bottom: 10px;
}

.auth-page .auth-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #8C9AB0;
    margin-bottom: 10px;
}

.languages {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    position: absolute;
    top: 32px;
    right: 32px;
    cursor: pointer;
}

.languages #dropdownMenuLanguage img {
    max-width: 24px;
}

.languages .languages--current:hover {
    cursor: default;
}

.auth-page .form-group {
    margin-bottom: 8px;
    position: relative;
}

.auth-page .form-group.has-error {
    margin-bottom: 17px;
}

.auth-page .form-group.has-error .help-block {
    position: absolute;
    bottom: -17px;
    right: 0;
}

.auth-page .form-group.has-success .form-control {
    border: 1px solid #267EE3;
}

.auth-page .auth-page_box-form .form-control {
    padding: 15px 16px;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    border: 1px solid #D2D9E8;
    border-radius: 4px;
    height: inherit;
    color: #267EE3;
    caret-color: #9CA4B2;
    background-color: transparent;
    transition: all ease-in-out .4s;
}

.auth-page .form-control::placeholder {
    color: #9CA4B2;
}

.auth-page .form-control:focus {
    background-color: #EEF7FF;
    border: 1px solid #267EE3;
    box-shadow: none;
}

.auth-page .form-group select:not([type=checkbox]),
.auth-page .form-group input:not([type=checkbox]),
.auth-page .form-group .select2 {
    flex: auto;
}

.auth-page .checkbox {
    margin-top: 15px;
    margin-bottom: 30px;
}

.auth-page .checkbox .span {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #444444;
}

.auth-page .checkbox label {
    display: flex;
}

.auth-page .checkbox input[type="checkbox"] {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    opacity: 0;
    z-index: -1;
}

.auth-page .checkbox input[type="checkbox"]+span {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.auth-page .checkbox input[type="checkbox"]+span::before {
    position: absolute;
    content: "";
    background: #267EE3;
    border-radius: 3px;
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.auth-page .checkbox input[type="checkbox"]:checked+span::before {
    background-image: url('../images/check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}

.auth-page .auth__submit {
    font-size: 15px;
    font-weight: 700;
    line-height: 100%;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    margin-top: 0;
    background: #007E5D;
    margin-top: 30px;
    border-radius: 4px;
    padding: 17px;
    margin-left: 0;
    margin-right: 0;
    height: auto;
    border: none;
    transition: all ease-in-out .4s;
}

.auth-page .auth__submit:hover {
    background-color: #006b4f;
    opacity: 1;
}

.auth-page__links {
    text-align: left;
}

.auth-page .auth-page__links a {
    font-size: 12px;
    color: #267EE3;
    font-weight: 700;
    line-height: 100%;
    border-bottom: 1px solid transparent;
    transition: all ease-in-out .4s;
}

.auth-page .auth-page__links a:hover {
    border-bottom: 1px solid #267EE3;
}

.auth-page .auth-page__links span {
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    color: #232935;
}

.auth-page .field-signupform-phone_code {
    margin-bottom: 0;
    width: 100%;
}

.auth-page .select2-container--default .select2-selection {
    border: 1px solid #E6E9EE;
    border-radius: 8px;
    padding: 11px 20px;
    height: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #8C9AB0;
    box-shadow: none;
}

.auth-page .select2-container--default.select2-container--open .select2-selection--single {
    box-shadow: none;
}

.auth-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: inherit;
    padding: 0;
}

.auth-page .select2-container--default .select2-selection--single .select2-selection__rendered img {
    max-height: 14px;
    margin-right: 10px;
}

.auth-page .form-group.has-success .select2-container--krajee .select2-selection {
    box-shadow: none !important;
    border: 1px solid #267EE3 !important;
}

.auth-page .form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 22px;
    width: auto;
}

.auth-page .select2-container--default .select2-selection--single .select2-selection__arrow b,
.auth-page .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    width: 6px;
    height: 6px;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #8C9AB0;
    margin: 0;
    transform-origin: top;
    transform: rotate(225deg);
    transition: transform ease-in-out .4s;
}

.auth-page .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(45deg);
}

@media (max-width: 575px) {
    .auth-page .container {
        margin-right: 0;
        max-width: 100%;
    }
    .auth-page_container {
        padding: 45px 30px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .auth-page_box-form {
        max-width: inherit;
        min-width: inherit;
    }
}