body {
	font-family: sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 40px;
}

.form {
	max-width: 400px;
	width: 100%;
	display: block;
	border: solid 2px black;
	padding: 30px;
	border-radius: 10px;
}

.input {
	margin: 5px 0 20px;
	border-radius: 7px;
	border: 2px solid #a70d3b;
	padding: 5px;


}

fieldset {
	padding: 0;
}

::placeholder {
	font-size: 15px;
	padding-left: 5px;
}


.data-user,
{
display: flex;
flex-direction: column;
padding: 0px;
}


.data-user__title {
	font-size: 20px;
	padding-bottom: 10px;
}

label {
	display: flex;
	flex-direction: column;
}

.data-message {
	display: flex;
	flex-direction: column;
	align-items: start;

}

.message-title {
	min-width: 209px;
	width: 100%;
}

#message {
	/*min-width: 209px;*/
	width: 100%;
	max-height: 150px;
	min-height: 50px;
	border: 2px solid #a70d3b;
	margin: 5px 0 25px;
	border-radius: 7px;
	margin-top: 5px;
	resize: vertical;
}

.checkbox-label {
	display: flex;
	flex-direction: row;
	gap: 5px;
	margin-left: 22px;
}

.check {
	appearance: none;
	outline: none;
}

.check::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border: 1px solid #333;
	border-radius: 4px;
	cursor: pointer;
	position: absolute;
	margin-left: -22px;
}

.check:checked::after {
	background: url("../images/check-icon.svg") no-repeat center, #7836e4;

}


.button {
	cursor: pointer;
	margin-top: 10px;
	padding: 10px 50px;
	border: 2px solid #000000;
	background-color: #7836e4;
	border-radius: 10px;
	color: bisque;
	transition: opacity 0.2s, background-color 0.2s;

}

.button:hover {
	opacity: 0.8;
}

.button:active {
	background-color: #f11edf;
}

.input:focus-visible,
textarea:focus-visible,
.button:focus-visible,
.check:focus-visible::after {
	outline: solid 2px #f11edf;
	outline-offset: 1px;
}