body {
	margin: 0;
	padding: 0;
	font-family: Open Sans, sans-serif;
	letter-spacing: 1px;
}
li {
	list-style: none;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
a {
	display: block;
	text-decoration: none;
	cursor: pointer;
}

.form-registration-container {
	width: 100%;
}

.check.check-on {
	display: block;
	margin-top: 5px;
	font-size: 18px;
	font-weight: 600;
	color: green;
	text-align: center;
}
h1 {
	text-align: center;
	font-size: 26px;
	color: #2c659be3;
	margin: 50px 0 0;
}
.registration-list {
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.registration-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
	transition: background-color 600000s 0s, color 600000s 0s;
}
.registration-name,
.registration-email,
.registration-phone,
.registration-password-first,
.registration-password-repeat {
	position: relative;
	background-color: #fff;
	margin: 0;
	border-radius: 8px;
}
.input-name,
.input-email,
.input-phone,
.input-password-first,
.input-password-repeat {
	width: 100%;
	padding: 8px 8px 4px;
	font-size: 24px;
	border: 1px solid rgba(0, 0, 0, 0.24);
	box-sizing: border-box;
	border-radius: 8px;
}
.form-label {
	position: absolute;
	top: 9px;
	left: 5px;
	padding: 0 5px;
	font-size: 20px;
	color: #a9a9a9;
	background-color: #fff;
}
.prompt-name,
.prompt-email,
.prompt-phone,
.prompt-password-first,
.prompt-password-repeat,
.prompt-l {
	display: block;
	margin: 0;
	font-size: 16px;
	color: #ff7171;
}
.registration-checkbox {
	max-width: 360px;
	margin: 0 auto;
}
.input-name:not(:placeholder-shown) ~ .form-label,
.input-name:focus ~ .form-label,
.input-email:not(:placeholder-shown) ~ .form-label,
.input-email:focus ~ .form-label,
.input-phone:not(:placeholder-shown) ~ .form-label,
.input-phone:focus ~ .form-label,
.input-password-first:not(:placeholder-shown) ~ .form-label,
.input-password-first:focus ~ .form-label,
.input-password-repeat:not(:placeholder-shown) ~ .form-label,
.input-password-repeat:focus ~ .form-label {
	top: -10px;
	font-size: 12px;
	left: 10px;
	transition: all 0.3s;
}
.registration-checkbox {
	padding-left: 30px;
	margin: 0;
}
.registration-checkbox a {
	display: inline;
	padding-top: 5px;
	color: #105495e3;
	font-size: 16px;
}
.registration-checkbox a:hover {
	text-decoration: underline;
	color: #2c659be3;
}
.registration-checkbox label {
	position: relative;
	cursor: pointer;
	user-select: none;
	font-size: 14px;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	-webkit-clip-path: inset(100%);
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}
.visually-hidden + label::before {
	content: '';
	position: absolute;
	display: block;
	left: -25px;
	top: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #737373;
	border-radius: 3px;
}
.visually-hidden:checked + label::after {
	content: '';
	background: url(/build/images/chek1.dae967bd.svg) 0 0 / contain no-repeat;
	position: absolute;
	display: block;
	width: 12px;
	height: 12px;
	left: -23px;
	top: 2px;
}
.button-submit {
	margin: 0 auto;
	display: block;
	padding: 10px 30px 9px;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 26px;
	background: #1a5b99e3;
	transition: background 0.4s ease-in-out;
	border-radius: 8px;
}
.button-submit:hover {
	background-color: #2c659be3;
}

