@charset "utf-8";
/* CSS Document */
.body {
	background-color: #333;
}
.form {
	max-width: 550px;
	margin: 0px auto;
	background-color: #333333;
	color: #FFFFFF;
	padding: 30px 0;
}
.form * {
	outline: none;
}
.form_body {
	
}
.form_title {
	font-size: 40px;
	font-weight: 700;
	margin: 0px 0px 30px 0px;
}
.form_item {
	margin: 0px 0px 20px 0px;
}
.form_lable {
	font-size: 18px;
	display: block;
	margin: 0px 0px 10px 0px;
}
.form_input {
	height: 40px;
	padding: 0px 0px 0px 0px;
	border-radius: 5px;
	width: 100%;
	font-size: 18px;
	transition: all 0.5s ease 0s;
}
.form_input:focus {
	box-shadow: 0 0 15px #7a956b;
}
.options {
	padding: 10px 0px 0px 0px;
}
.options_item {
	margin: 0px 0px 10px 0px;
}
.options_label {
	display: inline-flex;
	font-size: 16px;
	line-height: 140%;
	align-items: center;
	position: relative;
}
.options_label::before {
	content: "";
	align-self: flex-start;
	flex: 0 0 24px;
	height: 24px;
	background-color: #FFFFFF;
	border-radius: 50%;
	margin: 0px 10px 0px 0px;
}
.options_label::after {
	transition: transform 0.5s ease 0s;
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 16px;
	height: 16px;
	background-color: #7a956b;
	border-radius: 50%;
	transform: scale(0);
	margin: 0px 10px 0px 0px;
}
.options_input {
	display: none;
}
.options_input:checked + .options_label::after {
	transform: scale(1);
}
.select {
	height: 40px;
	width: 100%;
	border-radius: 5px;
	font-size: 18px;
	padding: 0px 20px;
}
.checkbox {
	
}
.checkbox_input {
	display: none;
}
.checkbox_input:checked + .checkbox_label::after {
	transform: scale(1);
}
.checkbox_label {
	font-size: 16px;
	line-height: 140%;
	display: inline-flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.checkbox_label::before {
	content: "";
	align-self: flex-start;
	flex: 0 0 24px;
	height: 24px;
	background-color: #FFFFFF;
	border-radius: 4px;
	margin: 0px 10px 0px 0px;
}
.checkbox_label::after {
	transition: transform 0.5s ease 0s;
	content: "";
	width: 16px;
	height: 16px;
	position: absolute;
	top: 4px;
	left: 4px;
	background-color: #7a956b;
	border-radius: 4px;
	transform: scale(0);
}
.checkbox_label a {
	color: #7a956b;
}

.form_button {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60px;
	background-color: #7a956b;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 20px;
	box-shadow: 0 5px 0 #161b13;
	transition: background-color 0.5s ease 0s;
	position: relative;
	top: 0;
}
.form_button:hover {
	background-color: #4f6146;
}
.form_button:active {
	top: 3;
	box-shadow: 0 2px 0 #161b13;
}
