body.activeMessage{
	overflow: hidden;
	padding-right: 16px;
}
.formMessage{
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0px;
	top: 0px;
	background-color: #00000070;
	display: none;
	z-index: 10000;
}

.formMessage.openForm{
	display: flex;
}

.blockMessage {
	width: auto;
	background: #6C544D;
	padding: 20px;
	min-width: 500px;
	max-width: 700px;
	color: #fff;
}

.headerMessage {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.closeMessage {
	width: 40px;
	height: 40px;
}

.closeMessage svg {
	fill: #917369;
	cursor: pointer;
	transition: 0.3s;
}

.closeMessage svg:hover {
	fill: #fff;
}

.titleMessage {
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
}

.titleMessage {
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
	margin: 0px;
	line-height: 0px;
}

p.infoMessage {
	font-size: 18px;
	line-height: 21px;
	letter-spacing: 1px;
	font-weight: 100;
}

.buttonMessageBlock {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

.buttonMessage, .linkMessage {
	padding: 15px 20px;
	display: block;
	background: #78ad78;
	width: auto;
	color: #fff;
	font-size: 18px;
	border-radius: 50px;
	transition: 0.3s;
	opacity: 0.7;
	cursor: pointer;
}

button.buttonMessage {
	background: #df5f5f;
}

.buttonMessage:hover{
	opacity: 1;
}

.contentMessage {
	padding: 20px 0px;
}

.linkMessage{
	display: none;
}

.linkMessage.active{
	display: block;
}

.FormErrorLogin {
    width: 100%;
    margin: 20px auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

.blockError {
    width: auto;
    padding: 20px 30px;
    color: #000;
    font-size: 20px;
    line-height: 26px;
}

.FormErrorLogin .blockError a{
	background: #eee;
	color: #000;
	font-size: 16px;
	padding: 10px 20px;
	display: block;
	margin-top: 10px;
}

.FormErrorLogin .blockError a:hover{
	text-decoration: none;
}