.auth_page_wrap{
	background: url(/static/img/stone_logo.svg) center 54px/130px no-repeat;
	flex: 1;
	transition: opacity 0.5s;
}

.auth_page_inner{
	width: 260px;
	margin: 0px auto;
}

.auth_header_text{
	text-align: center;
	margin: 179px 0 0;
	font-size: 25px;
	line-height: 30px;
	color: var(--blue);
}

.auth_input_wrap{
	position: relative;
	width: 260px;
	padding: 0 10px 6px;
	border-bottom: 1px solid #D9D9D9;
	margin: 25px auto 0;
}

.auth_input_wrap:first-child{
	margin: 50px auto 0;
}

.auth_input{
	font-size: 15px;
	line-height: 18px;
	color: #353535;
	width: 100%;
}

.auth_input[type="password"]{
	letter-spacing: 16px;
}

.auth_input_label{
	font-size: 15px;
	line-height: 18px;
	color: #A1A1A1;
	transition: transform 0.3s;
	position: absolute;
	top: 0;
	left: 10px;
	transform-origin: left;
}

.auth_input:focus + .auth_input_label, .auth_input:not(:placeholder-shown) + .auth_input_label {
	transform: translateY(-18px) scale(0.66);
}

.auth_submit_button{
	width: 120px;
	height: 40px;
	border-radius: 15px;
	margin: 50px 0 0;
}

.auth_help{
	font-family: 'MontserratSemiBold';
	font-size: 15px;
	line-height: 18px;
	color: var(--blue);
	margin: 25px 0 0;
}

.auth_help:first-child{
	margin: 40px 0 0;
}

.auth_help,.auth_submit_button,.auth_input_label{
	user-select: none;
}

@media(min-width: 1120px){
	.auth_page_wrap{
		background: url(/static/img/stone_logo.svg) 158px center/340px no-repeat;
		width: 1120px;
		margin: auto;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.auth_page_inner{
		width: 420px;
		height: 718px;
		background: white;
		margin: 0;
		box-shadow: 0px 0px 10px rgba(43, 75, 155, 0.15);
		border-radius: 10px;
		overflow: hidden;
		padding: 0 80px;
	}

	.auth_header_text{
		margin: 150px 0 0;
	}
}