.form {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 20px;
	margin: 20px;
	width: 100%;
	max-width: 615px;
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.form .field {
	display: flex;
	margin-bottom: 15px;
}

.form .field.inactive {
	opacity: 0.3;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.form .field .field-label {
	/* width:150px; */
	line-height: 30px;
	margin-right: 20px;
	flex: 1 1 0;
}

.form .field.error .field-label,
.form .field.inactive .field-label {
	color: #dc3545;
}

.form .field .field-value {
	display: flex;
	flex-direction: column;
	flex: 2 1 0;
}

.form .field .field-value input,
.form .field .field-value select {
	height: 28px;
	padding: 0 10px;
	border: 1px solid #ccc;
	max-width: 400px;
	width: 100%;
	box-sizing: border-box;
}

.form .field.error .field-value input,
.form .field.error .field-value select,
.form .field.inactive .field-value input,
.form .field.inactive .field-value select {
	border: 1px solid #dc3545;
	color: #dc3545;
}

.form .field .field-value select:not(:first-child) {
	margin-top: 15px;
}

.form .field .field-value textarea {
	height: 28px;
	padding: 0 10px;
	border: 1px solid #ccc;
	max-width: 400px;
	width: 100%;
	height: 120px;
	resize: none;
	box-sizing: border-box;
}

.form .form-submit {
	display: block;
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	background: #00a200;
	text-decoration: none;
	transition: 0.2s;
}

.form .form-submit:hover {
	background: #008700;
}

.form .caps {
	text-transform: uppercase;
}

.wrapper_link_footer {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
}