@font-face {
	font-family: 'Inter';
	src: url(../fonts/Inter-Regular.ttf);
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Inter';
	src: url(../fonts/Inter-SemiBold.ttf);
	font-weight: 600;
	font-style: normal;
}
*{
	box-sizing: border-box;
	outline: none;
}
body{
	font-family: 'Inter',sans-serif;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
	color: #000;
	background-color: #E8EAF6;
}
img{
	max-width: 100%;
}
a{
	color: inherit;
	text-decoration: underline;
}
a:hover{
	text-decoration: none;
}
.wrapper{
	position: relative;
	display: flex;
}
.container{
	position: relative;
	max-width: 100%;
	padding: 0 15px; 
}
.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 50px 0;
}
.logo{
	font-size: 0;
}
main{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #E8EAF6;
	width: 100%;
	height: 100vh;
}
.main-section{
	text-align: center;
}

.btn{
	border: none;
	text-decoration: none;
	background: none;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	border-radius: 9px;
	font-size: 16px;
	padding: 0 10px;
	filter: drop-shadow(0 5px 4.3px rgba(0, 0, 0, 0.25));
	transition: all .3s ease;
}
.btn:hover{
	opacity: .8;
}
.main-section .btn{
	width: 184px;
}

.btn-blue{
	color: #fff;
	background-color: #4CA5E8;
}
.btn-border{
	background-color: #fff;
	color: #4CA5E8;
	border: 1px solid #4CA5E8;
}
.main-title{
	font-size: 40px;
	margin: 0 0 40px;
	text-align: center;
}
aside{
	background-color: #DBEDF7;
	min-width: 450px;
	width: 450px;
}
aside .inner{
	padding: 30px;
}
aside .logo{
	display: inline-block;
	margin-bottom: 93px;
}
aside p{
	font-size: 30px;
	font-weight: 600;
	margin: 0 0 21px;
}
aside ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap:10px;
	font-size: 25px;
}
aside ul li a.active{
	text-decoration: none;
	color: #4CA5E8;
}
.box{
	background: #fff;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 30px;
}
.main-secondary{
	padding: 40px 35px;
	width: calc(100% - 450px);
}

.box .text{
	text-align: center;
	font-size: 50px;
	margin: 70px 0 60px;
}
.form-block{
	border-radius: 10px;
	border: 1px solid #FFFDFD;
	background: #E8EAF6;
	width: 1088px;
	max-width: 100%;
	padding: 30px;
	position: relative;
}
.form-block .actions{
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-top: 85px;
}
.form-block .btn{
	width: 184px;
}
.form-block .label{
	font-size: 16px;
	color: #545353;
	margin: 0 0 3px;
}
.form-block input[type=text]{
	display: block;
	width: 100%;
	border-radius: 10px;
	border: 1px solid #AFADAD;
	background: #FFF;
	padding: 0 15px;
	height: 60px;
	font-size: 18px;
	margin-bottom: 10px;
}
.form-block input[type=text]:focus{
	border: 1px solid #4CA5E8;
}

.form-block input[type=text].error{
	border: 1px solid #FF0000;
}

.form-block .answer{
	color: #419D98;
	user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
.form-block .counter{
	position: absolute;
	bottom: 49px;
	right: 25px;
}
.one-more-time {
	text-align: center;
}

@media screen and (max-width: 1199px) {
	.wrapper{
		flex-direction: column;
	}
	.header{
		position: static;
		margin-bottom: 50px;
	}
	main{
		height: auto;
	}
	.main-secondary,
	aside{
		width: 100%;
		min-width: 0;
	}
	.box .text{
		margin: 15px 0 30px;
		font-size: 24px;
	}
	aside .logo{
		position: absolute;
		right: 30px;
		top: 30px;
		width: 50px;
	}
	aside p{
		font-size: 20px;
	}
	aside ul{
		font-size: 14px;
	}
	.main-secondary,
	.form-block,
	.box{
		padding: 15px;
	}
	.form-block .label{
		font-size: 12px;
	}
	.form-block input[type=text]{
		font-size: 14px;
	}
	.form-block .counter{
		position: static;
		text-align: center;
		margin-top: 15px;
	}
	.form-block .actions{
		gap:10px;
		margin-top: 30px;
	}
	.form-block .btn{
		width: auto;
		flex: 1 0 0;
		font-size: 14px;
	}
	.main-title{
		font-size: 36px;
	}
}