/* ОБЛАСТЬ Форма */

#form {
	position: relative;
	height: 220px;
	width: 670px;
	margin: 30px 0 0;
	padding: 20px 30px;
	border-radius: 20px;
	border: 2px solid #0061AE;
}

.form_group {
	position: relative;
	display: block;
	margin: 10px 0;
}

.form_label {
	display: inline-block;
	width: 100px;
	font-family: 'Alumni sans';
	font-size: 24px;
	color: #0061AE;
}

.form_label1 {
	display: inline-block;
	height: 90px;
	width: 100px;
	font-family: 'Alumni sans';
	font-size: 24px;
	color: #0061AE;
}

.form_input {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	height: 28px;
	border: 1px solid #0061AE;
	border-radius: 5px;
}

.form_input1 {
	display: inline-block;
	vertical-align: top;
	height: 90px;
	width: 500px;
	border: 1px solid #0061AE;
	border-radius: 5px;
}

.group_error {
	margin: -5px 0 0;
	overflow: auto;
}

.label_error {
	display: inline-block;
	float: right;
	vertical-align: top;
	text-align: justify;
	color: red;
	font-family: 'Alumni sans';
	font-size: 20px;
}

#button_enter {
	position: absolute;
	bottom: 20px;
	right: 30px;
	height: 40px;
	width: 150px;
	font-family: 'Alumni sans';
	font-size: 24px;
	font-weight: bold;
	background: #0061AE;
	color: white;
	border-radius: 5px;
	cursor: pointer;
}

#support_popup {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
}

#support_popup_page {
	position: relative;
	width: 300px;
	margin: 280px 0 0 215px;
	padding: 0 30px 35px;
	background: white;
	border-radius: 20px;
	border: 2px solid #0061AE;
}

.popup_label {
	width: 100%;
	margin: 30px 0 50px;
	text-align: justify;
	font-family: 'Alumni sans';
	font-size: 24px;
	color: #0061AE;
}

#button_close {
	display: block;
	position: absolute;
	left: 95px;
	bottom: 20px;
	height: 40px;
	width: 120px;
	background: #0061AE;
	border-radius: 5px;
	cursor: pointer;
}

.button_text {
	margin: 5px auto;
	text-align: center;
	font-family: 'Alumni sans';
	font-size: 24px;
	font-weight: bold;
	background: inherit;
	color: white;
}

