html, body {
	height: 95%;
	line-height: 1;
	font-size: 14px;
	background-color: #333;
	font-family: Arial, "Helveticz Neue", Helveticz, sans-serif;
}
.form {
	max-width: 550px;
	margin: 0px auto;
	color: #fff;
	padding: 30px 0;
}

.form * {
	outline: none;
}

.form__title {
	font-size: 400;
	font-weight: 700;
	margin: 0ps 0px 30px 0px;
	
}

.form__item {
	margin: 0px 0px 20px 0px;
}

.form__label {
	font-size: 18px;
	display: block;
	margin: 0px 0px 10px 0px;
}

.form__input {
	height: 50px;
	border-radius: 5px;
	width: 95%;
	font-size: 18px;
}

.form__input:focus {
    box-shadow: 0 0 15px #000;
}
 
.form__input._error {
	box-shadow: 0 0 15px red;
}

 
 
 
 textarea.form__input {
	 min-height: 120px;
	 resize: vertical;
 }
 
.options {
	padding: 10px 0px 0px 0px;
} 
 
.options__item{
	margin: 0px 0px 10px 0px;
} 
 
/*---Дизанерське рішення про стрилізації radio button, не пріорітетно---*/
.options__input {
	display: none;
}

.options__input:checked + .options__label::after {
	transform: scale(1);
}

.options__label {
	font-size: 16px;
	display: inline-flex;
	line-height: 140%;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.options__label::before {
	content: "";
	align-self: flex-start;
	flex: 0 0 24px;
	height: 24px;
	background-color: #fff;
	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);
}
/*-------------------------------------------------------------------*/

.select {
	height: 50px;
	width: 95%;
	border-radius: 5px;
	font-size: 18px;
}

/*---Дизанерське рішення про стрилізації, file input, не пріорітетно---*/

.file__item {
	position: relative;
}
.file__input {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 95%;
	height: 100%;
	opacity: 0;
	font-size: 0;
	cursor: pointer;
}

.file__button {
	display: inline-flex;
	min-height: 40px;
	border-radius: 30px;
	justify-content: center;
	align-items: center;
	background-color: #77608d;
	padding: 0px 20px;
}

.file__preview{
	display: inline-block;
	max-width: 100px;
	padding: 10px 0px 0px 0px;
}

.file__preview{
	max-width: 100%;
}


/*-------------------------------------------------------------------*/

/*---Дизанерське рішення про стрилізації, checkbox, не пріорітетно---*/

.checkbox__input {
	display: none;
}

.checkbox__input:checked + .checkbox__label::after{
	transform: scale(1);
}

.checkbox__label {
	font-size: 16px;
	line-height: 140%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	position: relative;
}

.checkbox__label::before {
	content: "";
	align-self: flex-start;
	flex: 0 0 24px;
	height: 24px;
	background-color: #fff;
	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: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60px;
	background-color: #7a956b;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	cutsor: pointer;
	border: none;
	border-radius: 20px;
    box-shadow: 0 5px 0 #1d2b15;
	transition: background-color 0.5s ease 0s;
	position: relative;
	top: 0;
}

.form__button:hover {
	background-color: #4f6146;
}

.form__button:active {
	top: 3px;
	box-shadow: 0 2px 0 #1d2b15;
}






div.form__title{
	margin: 0px 0px 10px 0px;
}

