* { box-sizing: border-box }
body {
	font-family: 'Open Sans';
	background-image: url(/img/login/login_bg.jpg);
	background-size: cover;
	background-attachment: fixed;
}

a { text-decoration: none }

.bg { 
	position: absolute; 
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #257eff;
	opacity: .8;
	z-index: 1;
}

.sqr_bg {
	z-index: 2;
	position: absolute;
	margin: auto;
	top: 0; left: 0;
	bottom: 0; right: 0;
	max-width: 620px;
	padding: 0 30px;
	display: flex;
	gap: 30px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sqr {
	width: 100%;
	background-color: #fff;
	padding: 35px 50px;
}
.logo { margin-bottom: 10px; width: 100% }

form.auth { 
	display: flex; 
	gap: 20px;
	flex-direction: column;
}

form.auth *  { 
	font-size: 16px;
}

.auth .error { color: red }
.auth label { 
	display: flex; 
	flex-direction: column; 
	gap: 5px;
	color: #666;
}

.auth input[type="submit"] { 
	background-color: #267dff;
	color: #fff;
	padding: 10px;
	border: none;
	margin-right: 20px;
}

.auth input[type="text"], 
.auth input[type="password"] { 
	border: 1px solid #d4d4d4;
	padding: 10px 10px 8px;
	background-color: #e8f0fd 
}


.forgot_link { color: #18a0f6; text-decoration: none }

.auth_header { text-transform: uppercase; color: #666; font-weight: bold }
.text_below { color: #fff; font-size: 14px }
.text_below a { color: #fff }