body,
html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: Arial, sans-serif;
}

.background {
	background-color: #135;
	background-size: cover;
	background-position: center;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.container {
	background: #135;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	max-width: 400px;
	width: 90%;
	position: relative;
	z-index: 1;
}

.logo {
	max-width: 100%;
	height: auto;
}

.checkbox-container {
	margin: 20px 0;
}

.button {
	background-color: #3692fe;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.button:hover {
	background-color: #0056b3;
}

.fz {
	font-size: 20px;
	color: white;
}

.checkbox-container {
	margin: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	user-select: none;
	font-size: 18px;
	color: white;
}

.checkbox-container input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkbox-container label {
	position: relative;
	padding-left: 40px;
	/* отступ для квадрата */
	cursor: pointer;
}

.checkbox-container label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border: 2px solid white;
	border-radius: 5px;
	background-color: transparent;
	box-sizing: border-box;
	transition: background-color 0.3s, border-color 0.3s;
}

.checkbox-container input[type="checkbox"]:checked+label::before {
	background-color: #3692fe;
	border-color: #3692fe;
}

.checkbox-container input[type="checkbox"]:checked+label::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 14px;
	border-right: 3px solid white;
	border-bottom: 3px solid white;
}

.checkbox-container label:hover::before {
	border-color: #3692fe;
}

.button {
	background-color: #3692fe;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.button:hover {
	background-color: #0056b3;
}