.page[type="auth"][show="1"]{
	animation: show_1 0.3s forwards;
}

.page[type="auth"][show="0"]{
	animation: show_0 0.3s forwards;
}

.auth_wrap{
	width: calc(100vw - 80px);
	height: calc(100vh - 40px);
	margin: 40px auto 0;
	border-radius: 20px 20px 0 0;
	background: linear-gradient(180deg, var(--dark_grey), #000000);
	padding: 40px;
	box-shadow: 0px 0px 23px #0000003b;
	max-width: 360px;
	display: flex;
	flex-direction: column;
}

.auth_page{
	
}

.logo{
	width: 100%;
	height: 70px;
	max-width: 270px;
	max-height: 70px;
	background: url(/static/img/logo_white2.png) center/contain no-repeat;
	margin: 0 auto 40px;
}

.auth_input_wrap_light{
	display: flex;
	align-items: center;
	margin: 40px 0 0;
}

.auth_input_wrap_light:nth-child(1){
	margin: 0;
}

.auth_icon{
	width: 30px;
	height: 30px;
	margin: 0 10px 0 0;
	background-size: 30px 30px;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	top: 4px;
}

.auth_icon[type="login"]{
	background-image: url(/static/img/auth/email.svg);
}

.auth_icon[type="password"]{
	background-image: url(/static/img/auth/password.svg);
}

.auth_input_wrap{
	flex: 1;
	position: relative;
}

.auth_input_label{
	position: absolute;
	top: 0;
	left: 0px;
	line-height: 29px;
	transition: transform 0.3s;
}

.auth_input:focus + .auth_input_label, .auth_input:not(:placeholder-shown) + .auth_input_label{
	transform: translate(-6px, -18px) scale(0.8);
}

.auth_input{
	height: 30px;
	width: calc(100% - 20px);
	display: block;
	border-bottom: 2px solid #bdbdbd;
	color: #d8d8d8;
	font-size: 16px;
}

.auth_input[type="password"]{
	letter-spacing: 10px;
}

.auth_button{
	height: 50px;
	border-radius: 25px;
	margin: 40px 0 0;
}

.auth_forgot_pass{
	height: 30px;
	line-height: 30px;
	margin: 20px 0 0 auto;
	width: fit-content;
	text-align: right;
	padding: 0 25px 0 0;
}

.auth_forgot_step{

}


@keyframes show_1{
	from{
		opacity: 0;
		transform: translateY(100%);
	}
	to{
		opacity: 1;
		transform: translateY(0%);
	}
}

@keyframes show_0{
	from{
		opacity: 1;
		transform: translateY(0%);
	}
	to{
		opacity: 0;
		transform: translateY(100%);
	}
}