.auth_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
}

.auth_container__left {
    width: 35%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

img.auth_container_left__img {
    width: 48%;
  
	width:100%; max-width:9.219vw;
    position: absolute;
    top: 3%;
    left: 10%;
}

.auth_container_left__desc {
    font-family: 'Manrope';
    font-size: 1.1vw;
    font-weight: 200;
    color: #000000;
    line-height: 1.3em;
    padding: 3% 10% 1% 10%;
}

.auth_container_left__title {
    font-family: 'NextArt';
    font-size: 2.5vw;
    color: #272568;
    font-weight: 700;
    padding: 0% 6% 0% 10%;
    line-height: 1.2em;
}

.auth_container__right { overflow:hidden; position:relative;
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
	background-color: rgba(68, 106, 209, 1);
background-image: radial-gradient(circle, rgba(68, 106, 209, 1) 0%, rgba(46, 42, 109, 1) 48%, rgba(38, 21, 76, 1) 100%);
}

.auth_container_right__form {
    box-shadow: 2px 2px 35px rgba(0, 0, 0, 0.1);
    padding: 0% 1.875vw 0% 1.875vw;
    border-radius: 1.042vw;
    width: 35%;
    border: solid 1px #7079c173;
    margin-right: -1%;
    position: relative; z-index:2;
	    background: #798dd036;
    backdrop-filter: blur(7px);
	/* box-shadow: rgba(255, 255, 255, 0.1) -0.75px -0.5px inset, rgba(255, 255, 255, 0.024) 0.75px 0.5px inset; */
}

.bg_element_white_opac{position:absolute; bottom:-5.208vw; right:-5.208vw; width:100%; max-width:38.333vw;     z-index: 1; display:block;}

input.text-input-shadow {
    width: 94%;
    border-radius: 55px;
    padding: 1vw 1vw 1vw 3.1vw;
    font-family: 'Manrope';
    color: #B6C0DF;
    font-weight: 500;
    transition: 0.4s;
    font-size: 1.05vw;
    border: none;
    box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.15);
	background:#798DD0;
}

/* Плейсхолдеры */

input.text-input-shadow::-webkit-input-placeholder {
    color: #B6C0DF;
    font-weight: 500;
    font-size: 0.95vw;
}

input.text-input-shadow::-moz-placeholder {
    color: #B6C0DF;
    font-weight: 500;
    font-size: 0.95vw;
    padding-left: 5%;
}

input.text-input-shadow:focus {
    outline: none;
    border: none;
    background-color: #798DD0;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.25);
}

.form-login-in {
    margin: 0% 0% 4% 0%;
    display: flex;
    position: relative;
}

.form-login-in.form-footer {
    display: flex;
    justify-content: space-between;
    margin: -0.5% 3% 1% 3%;
}

/* Отключение чек-бокса (input) по ID*/

input#remember {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* Правила для label, связанного с checkbox - речь про span внутри label */

span.checkbox-text {
    display: inline-flex;
    align-items: center;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

span.checkbox-text::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* Наведение на новый чекбокс */

input#remember:not(:disabled):not(:checked)+span.checkbox-text:hover::before {
    border-color: #000;
}


/* Нажатие (зажатие на отпуская) на новый чекбокс */
input#remember:not(:disabled):active+span.checkbox-text::before {
    background-color: #000;
    border-color: #000;
}

/* Выбранный новый чекбокс */
input#remember:checked+span.checkbox-text::before {
    border-color: #000;
    background-color: #000;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

span.checkbox-text {
    font-family: 'Manrope';
    font-size: 0.85vw;
    font-weight: 400;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}

a.reset_password {
    font-family: 'Manrope';
    font-size: 0.85vw;
    font-weight: 400;
    color: #fff;
    transition: 0.4s;
}

a.reset_password:hover, span.checkbox-text:hover {
    color: #000;
}

button.submit-login-in {
    width: 100%;
    	background-color: #fff !important;
    color: #2E2A6D !important; font-weight:400;
    height: 3vw;
    border-radius: 55px;
    border: none;
    font-family: 'Manrope';

    font-size: 1vw;
    font-weight: 400;
    margin-top: 2%;
    transition: 0.4s;
    cursor: pointer;
}

button.submit-login-in:hover {
	/*
    background-color: #017dc5 !important;
    color: white !important;
	*/
	background-color: #000 !important;
    color: #fff !important; font-weight:400;
}

.auth_container_right_form__title {
    text-align: center;
    font-family: 'Manrope';
    font-size: 1.458vw;
    font-weight: 900;
    color: #fff; text-transform:uppercase;
    margin: 10% 0% 8% 0%;
}

a.auth_container_right_form__register {
    font-family: 'Manrope';
    text-align: center;
    font-size: 0.85vw;
    margin: 6% 0% 7% 0%;
    color: #B6C0DF;
    display: flex;
    justify-content: center;
    transition: 0.4s;
}

.auth_container_right_form__login {
    font-family: 'Manrope';
    text-align: center;
    font-size: 0.85vw;
    margin: 3% 0% 3% 0%;
    color: #909090;
    display: flex;
    justify-content: center;
    transition: 0.4s;
}

.auth_container_right_form__login:hover {
    color: #006393;
}

a.auth_container_right_form__register:hover {
    color: #fff;
}



.auth_container_left__footer {
    position: absolute;
    bottom: 5%;
    left: 10%;
    width: 100%;
    display: flex;
}



a.auth_container_left__return {
    background-color: #243998;
    color: #fff;
    font-family: 'Manrope';
    font-size: 0.8vw;
    font-weight: 500;
    padding: 1% 3% 1% 6%;
    border-radius: 55px;
    background-image: url(/images/backSVG_white.svg);
    background-size: 8.5%;
    background-repeat: no-repeat;
    background-position: 5% center;
    transition: 0.4s;
}

a.auth_container_left__return:hover {
    background-color: #6631a4;
}

a.auth_container_left__register {
    background-color: #000;
    color: #fff;
    font-family: 'Manrope';
    font-size: 0.8vw;
    font-weight: 500;
    padding: 1% 3% 1% 3%;
    border-radius: 55px;
    transition: 0.4s;
    margin-left: 2%;
}

a.auth_container_left__register:hover {
    background-color: #6631a4;
}

div#login-input-svg {
    width: 1.2vw;
    height: 1.2vw;
    position: absolute;
    left: 5%;
    top: 33%;
    background: url(/images/loginSVG.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
}

div#password-input-svg {
    width: 1.2vw;
    height: 1.2vw;
    position: absolute;
    left: 5%;
    top: 33%;
    background: url(/images/passwordSVG.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
}

.error-block-login {
    position: absolute;
    height: 4vw;
    width: 100%;
    left: 0;
    top: -5vw;
    display: none;
    border-radius: 15px;
    box-shadow: 3px 3px 20px rgba(0,0,0,0.1);
    font-family: 'Manrope';
    font-size: 0.85vw;
    font-weight: 500;
    background: url(/images/alertSVG.svg);
    background-position: 5% center;
    background-size: 2.2vw;
    background-repeat: no-repeat;
    border: solid 1px red;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.error-block-login > div {
    padding-left: 5vw;
}

#error-password, #error-login {
    display: none;
}

/* ДАЛЕЕ РЕГИСТРАЦИЯ */
/* ДАЛЕЕ РЕГИСТРАЦИЯ */
/* ДАЛЕЕ РЕГИСТРАЦИЯ */


.form-register {
    width: 48%;
    display: flex;
    margin: 1%;
    position: relative;
}

form.register-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.auth_container_right__form-register {
    box-shadow: 2px 2px 35px rgba(0, 0, 0, 0.1);
    padding: 0% 4% 4% 4%;
    border-radius: 15px;
    width: 75%;
    border: solid 1px #e7e7e7;
    margin-right: -1%;
    position: relative;
	    border: solid 1px #7079c173;
	    background: #798dd036;
    backdrop-filter: blur(7px);
	
}

button.submit-login-in.register {
    width: 98%;
    margin-left: 1%;
    font-size: 0.95vw;
}


.error-block-register {
    display: none;
    width: 83%;
    padding: 2% 0% 2% 0%;
    margin: 0% -1% 1% 0%;
    margin-right: -1%;
    border-radius: 15px;
    box-shadow: 3px 3px 20px rgba(0,0,0,0.1);
    font-family: 'Manrope';
    font-size: 0.85vw;
    font-weight: 500;
    background: url(/images/alertSVG.svg);
    background-position: 3% center;
    background-size: 2.1vw;
    background-repeat: no-repeat;
    border: solid 1px red;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


.error-block-register > div {
    padding-left: 5vw;
}

.auth_container_right_form__title.register-title {
    margin: 3.5% 0% 3% 0%;
}

.form-error {
    position: absolute;
    color: #313131;
    font-family: 'Manrope';
    cursor: pointer;
    font-size: 0.75vw;
    font-weight: 600;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
    padding: 0.2vw 0.75vw 0.2vw 2.1vw;
    z-index: 999;
    background-color: white !important;
    border-radius: 55px;
    display: none;
    background: url(/images/alertSVG.svg);
    background-position: 5% center;
    background-size: 1.1vw;
    background-repeat: no-repeat;
    right: 4%;
    top: 23%;
    opacity: 0;
    border: solid 1px red;
}

.form-register > input {
    padding: 0.7vw 1vw 0.7vw 1.5vw;
}

.form-error-long {
    display: none;
}


/* Отключение чек-бокса (input) по ID*/

input#resident {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* Правила для label, связанного с checkbox - речь про span внутри label */

span.checkbox-text-register {
    display: inline-flex;
    align-items: center;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

span.checkbox-text-register::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* Наведение на новый чекбокс */

input#resident:not(:disabled):not(:checked)+span.checkbox-text-register:hover::before {
    border-color: #000;
}


/* Нажатие (зажатие на отпуская) на новый чекбокс */
input#resident:not(:disabled):active+span.checkbox-text-register::before {
    background-color: #000;
    border-color: #000;
}

/* Выбранный новый чекбокс */
input#resident:checked+span.checkbox-text-register::before {
    border-color: #000;
    background-color: #000;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.auth_container__right.register {
    flex-direction: column;
}

.form-register > input.text-input-shadow::-webkit-input-placeholder {
    color: #B6C0DF;
    font-weight: 500;
    font-size: 0.9vw;
}

.form-register > input.text-input-shadow::-moz-placeholder {
    color: #B6C0DF;
    font-weight: 500;
    font-size: 0.9vw;
    padding-left: 5%;
}

span.checkbox-text-register {
    font-family: 'Manrope';
    font-size: 0.9vw;
    font-weight: 400;
    color: #B6C0DF;
    cursor: pointer;
}

.form-register-in.form-footer {
    margin: 1.5% 0% 0.5% 2%;
}

.auth_container_right__form.reset_password {
    padding: 0% 4% 5% 4%;
}

.reset-error {
    margin-left: -1.5%;
}

.error-block-login.success-send {
    background-image: url(/images/yesSVG.svg);
    border: solid 1px #5ea332;
}

.auth_container_right_form__desc {
    font-family: 'Manrope';
    line-height: 1.4em;
    font-size: 0.95vw;
    text-align: center;
    margin: -3% 5% 4% 5%;
}

.final-auth-btns {
    display: flex;
    justify-content: center;
    margin: 7% 0% -1% 0%;
}

.auth-send-again {
width: 95%;
background-color: #bdd630;
height: 3vw;
border-radius: 55px;
border: none;
font-family: 'Manrope';
color: #2d2d2d;
font-size: 0.9vw;
font-weight: 600;
margin-top: 2%;
transition: 0.4s;
cursor: pointer;
}

.auth-logout {
    width: 95%;
    background-color: #017dc5;
    height: 3vw;
    border-radius: 55px;
    border: none;
    font-family: 'Manrope';
    color: white;
    font-size: 0.9vw;
    font-weight: 600;
    margin-top: 2%;
    transition: 0.4s;
    cursor: pointer;
    }

.auth-send-again:hover {
background-color: #017dc5 !important;
color: white !important;
}

.auth-send-again:hover {
    background-color: #017dc5 !important;
    color: white !important;
    }

.auth-logout:hover {
    background-color: #bdd630 !important;
    color: #2d2d2d !important;
}

form.auth-final-right {
    width: 40%;
}

form.auth-final-left {
    width: 60%;
}





@media only screen and (max-width: 767px) {

	.auth_container {display: block;		width: 100%;	height: 100%;	}
	.auth_container__left {          width: 45%;
        height: 30vw;
        margin: 0px auto;
        padding-bottom: 0vw;}
	.auth_container__right {  padding-top: 4vw;   padding-bottom: 4vw;     width: 100%;}

}