@font-face {
	font-family: 'Circe Rounded';
	src: local('Circe Rounded Regular'), local('Circe-Rounded-Regular'),
		 url('/fonts/CirceRounded-Regular.woff2') format('woff2'),
		 url('/fonts/CirceRounded-Regular.woff') format('woff'),
		 url('/fonts/CirceRounded-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

	-webkit-text-size-adjust: none;
	   -moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
			text-size-adjust: none;
}

html {
	display: block;
}

body {
	margin: 0;
	padding: 0;
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	font-family: 'Circe Rounded', sans-serif;
	line-height: 1.15;
	background-color: var(--white);
	background-image: url('/images/bg.jpg?12');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	/*-webkit-font-smoothing: subpixel-antialiased;*/
}

img {
	display: block;

	width: 100%;
	height: auto;
}

a,
a:hover {
	text-decoration: none;
	cursor: pointer;
}

.bone {
	padding: 0 16px;
}

.button {
	overflow: hidden;
	display: block;

	height: 40px;
	padding: 0 36px;
	color: #000;
	font-size: 12px;
	font-weight: 400;
	font-family: 'Circe Rounded', sans-serif;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	text-overflow: ellipsis;
	line-height: 42px;
	white-space: nowrap;
	letter-spacing: 0;
	background-color: #FFF;
	border-radius: 40px;
	cursor: pointer;

	transition: color .25s linear, background-color .25s linear, border-color .25s linear, box-shadow .15s linear;

	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
		 -o-user-select: none;
			user-select: none;
}

.button:hover {
	color: #FFF;
	background-color: #000;
}

.button:active {
	line-height: 44px;
}

.button.load {
	background-color: #000;
	background-image: url('/images/load.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 50px;
}

.input {
	display: block;

	width: 100%;
	height: 40px;
	padding: 13px 20px 11px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Circe Rounded', sans-serif;
	line-height: 19px;
	background-color: rgba(255, 255, 255, .08);
	backdrop-filter: blur(20px);
	border: 2px solid #FFF;
	border-radius: 40px;
	box-shadow: none;
	outline: none;

	transition: background-color .13s linear, border-color .13s linear;

	-webkit-appearance: none;
}

.input.err {
	border-color: #EE0C0C;
}

.input:hover {
	border-color: #FFF;
}

.input:focus {
	background-color: #FFF;
	border-color: #FFF;
	box-shadow: none;
}

.error {
	width: 100%;
	text-align: center;
}

.error span {
	color: #EE0C0C;
}

.success {
	width: 100%;
	padding: 20px 24px;
	color: #C0C0C0;
	border: 1px solid #C0C0C0;
}

.wrapper {

}

.group {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;

	min-height: calc(100vh - 32px);
	margin: 16px 0;
	padding: 20px 0 100px;
}

.logo {
	width: 164px;
}

.logo img {
	width: 100%;
	height: auto;
}

.title {
	margin-top: 80px;
	color: #FFF;
	font-size: 40px;
}

.descr {
	padding-top: 8px;
	color: #FFF;
	font-size: 16px;
	text-align: center;
	line-height: 180%;
}

.form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;

	width: 100%;
	padding-top: 80px;
}

.form_input {
	width: 300px;
}

.input {

}

.form_button {

}

.note {
	padding-top: 12px;
	color: #FFF;
}

.footer {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;

	color: #000;
	font-size: 21px;
	font-weight: 300;
	text-align: center;
	line-height: 160%;
}

.footer_socs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.footer_socs_icon {
	width: 44px;
	padding: 12px;
	background-color: #FFF;
	border-radius: 50%;
	cursor: pointer;

	transition: transform .23s ease-out;
}

.footer_socs_icon:hover {
	transform: scale(1.1);
}

.input:-moz-placeholder {
	color: #FFF !important;
	line-height: normal;
}

.input::-webkit-input-placeholder {
	color: #FFF;
	line-height: normal;
}

::-webkit-input-placeholder {
	color: #FFF;
	line-height: normal;
}

:-ms-input-placeholder {
	color: #FFF;
	line-height: normal;
}

::-moz-placeholder {
	color: #FFF;
	line-height: normal;
}

:-moz-placeholder {
	color: #FFF;
	line-height: normal;
}

@media only screen and (max-width: 768px) {
	.title {
		margin-top: 40px;
	}

	.descr {
		padding-left: 16px;
		padding-right: 16px;
		font-size: 14px;
	}

	.descr br {
		display: none;
	}

	.form {
		padding: 40px 16px 0;
	}

	.form_input {
		width: 100%;
	}

	.form_button {
		width: 100%;
	}

	.note {
		padding-left: 16px;
		padding-right: 16px;
	}
}