* {
	box-sizing: border-box;
}
.auth-section {
	width: 100%;
	height: auto;
	position: fixed;
	bottom: 0;
	background: #e2e2e2;
}
.auth-section__wrapper {
	display: flex;
	align-items: center;
	justify-content: start;
	padding: 20px 2.969%
}
.logo-box {
	display: flex;
	align-items: center;
}
.logo-box__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	margin-right: 20px;
}
.logo-box__logo img {
	max-width: 100%;
	max-height: 100%;
}
.logo-box__text {
	font-family: 'PT Sans Bold';
	color: #00b4f2;
	text-align: left;
	width: 440px;
	font-size: 20px;
	line-height: 1.2;
	margin-right: 20px;
}
.form-box form {
	display: flex;
	align-items: center;
}
.form-box input, 
.form-box input 
{
	display: block;
	width: 100%;
	max-width: 283px;
	height: 50px;
	background: #fff;
	font-family: 'PT Sans Bold';
	font-size: 24px;
	color: #2c3135;
	padding: 0 20px;
	border: 1px solid #fff;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.form-box input[type="submit"] {
	color: #fff;
	background: #00b4f2;
	width: 100%;
	max-width: 115px;
	height: 52px;
	cursor: pointer;
	border: none;
}
.form-box form input:not(:last-child) {
	margin-right: 20px;
}
.form-box__error {
	display: inline-flex;
	flex-direction: column;
	margin-bottom: 15px;
}
.form-box__error-item:not(:last-child) {
	margin-bottom: 5px;
}
.wc {
	text-align: center;
	padding-top: 20px;
}
.wc__logo {
	margin-bottom: 50px;
}
.wc__text {
	margin-bottom: 15px;
}
.wc__text,
.wc__exit
{
	font-family: 'PT Sans Bold';
	color: #2c3135;
	text-align: center;
	font-size: 30px;
	line-height: 1.2;
}
.wc__exit {
	color: #00b4f2;
}
@media (max-width: 1400px) {
	.logo-box__text {
		font-size: 16px;
	}
}
@media (max-width: 1199px) {
	body {
		background-size: cover !important;
	}	
	.form-box,
	.form-box .form,
	.form-box .form form
	{
		width: 100%;
	}
	.auth-section__wrapper {
		width: 100%;
		max-width: 800px;
		margin: auto;
		flex-direction: column;
	}
	.logo-box {
		width: 100%;
		flex-direction: column;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.logo-box__logo {
		margin-right: 0;
		margin-bottom: 10px;	
	}
	.logo-box__text {
		text-align: center;
		margin-right: 0;
	}
	.auth-section__wrapper {
		padding: 20px;
	}
	.form-box .form {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.form-box__error {
		text-align: center;
	}
	.form-box form {
		justify-content: center;
	}
	.logo-box__text {
		width: 100%;
		max-width: 440px;
	}
}
@media (max-width: 767px) {
	.form-box form {
		flex-direction: column;
	}
	.form-box form input:not(:last-child) {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.form-box form input {
		max-width: 400px;
	}
}
@media (max-width: 450px) {
	.form-box form input,
	.form-box input[type="submit"]
	{
		width: 100%;
		max-width: 100%;
	}
	.wc__text {
		display: flex;
		flex-direction: column;
	}
}