.Container{
    width: 100%;
    height: 100%;
    position: fixed;
}
.Container-left{
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
.slide{
    width: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
.Container-right{
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
	overflow-y: auto;
}
.Container-right form{
    position: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
.back-name{
    width: 100%;
    height: auto;
    color: rgb(0, 0, 0);
}
.back-name img{
    width: 250px;
}
.back-inputs{
    width: 330px;
    height: 50px;
    border: 3px #3E45FF solid;
    position: relative;
    border-radius: 10px;
}
.back-inputs svg{
    width: 20px;
    position: absolute;
    left: 0px;
    top: 50%;
    color: #3E45FF;
    transform: translate(10px , -50%);
	fill: #3E45FF;
}
.back-inputs #svg-sean{
    width: 20px;
    position: absolute;
    left: 30px;
    top: 50%;
    color: #3E45FF;
    transform: translate(10px , -50%);
    cursor: pointer;
    z-index: 9;
}
.back-inputs #svg-sean2{
    width: 20px;
    position: absolute;
    left: 30px;
    top: 50%;
    color: #3E45FF;
    transform: translate(10px , -50%);
    cursor: pointer;
    display: none;
    z-index: 9;
}
.back-inputs span{
    font-size: 13px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0px , -50%);
    padding: 2px 15px;
    transition: 0.3s;
    color: #3E45FF;
    background-color: 000000;
}
.back-inputs:focus{
	border: #3E45FF 3px solid;
}
.back-inputs input:focus + span,
.back-inputs input:not(:placeholder-shown) + span {
    transform: translate(0px , -170%);
    background-color: #030A11;
    color: #3E45FF;
}
.input{
    width: 86%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    outline: none;
    direction: ltr;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    padding: 5px;
    color: white;
}
.input:is(:-webkit-autofill, :autofill) {
	background-color: #030A11 !important;
    -webkit-box-shadow: 0 0 0px 1000px #030A11 inset !important;
    -webkit-text-fill-color: white;
}
.info-input{
	text-align: right;
	color: rgb(177, 177, 177);
	margin-top: 5px;
	font-size: 10px;
	line-height: 25px;
}
.submit{
    width: 330px;
    height: 40px;
    border: 3px #3E45FF  solid;
    position: relative;
    border-radius: 5px;
    font-size: 15px;
    color: white;
    background-color: #3E45FF;
    transition: 0.3s;
    cursor: pointer;
}
.submit:hover{
    background-color: #2e32b3;
    border: 3px #2e32b3 solid;
}
.login_google{
    width: 333px;
    height: 43px;
    position: relative;
    border-radius: 5px;
    font-size: 15px;
    color: white;
    background: url(../images/login/login_google.png);
    background-size: cover;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 20px;
}
.sujestnegir{
    width: 333px;
    height: 43px;
    position: relative;
    border-radius: 5px;
    font-size: 15px;
    background-size: cover;
    transition: 0.3s;
    cursor: pointer;
    color: #3E45FF;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sujestnegir:hover{
    background-color: rgb(228, 232, 250);
    color: black;
}
@media (max-width: 732px){
    .Container-left{
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        display: none;
    }
    .Container-right{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        right: 0px;
    }
}
#CAPTCHA{
	width: 330px;
	height: 50px;
	border-radius: 10px;
	margin-bottom: 20px;
}