span.input-group-addon {
	display: none;
}

input[type="submit"] {
	position: relative;

	display: block;

	width: 100%;
	height: 42px;

	overflow: hidden;

	padding: 5px 30px;

	border: 0;
	border-radius: 10px;

	background:
		linear-gradient(135deg,
			#cce0cd 0%,
			#cce0cd 50%,
			#cce0cd 100%);

	background-size: 200% 100%;

	color: #fff;

	font-size: 18px;
	font-weight: 500;

	cursor: pointer;

	color: #333;

	transition:
		background-position .5s ease,
		transform .2s ease,
		box-shadow .3s ease;

}





input[type="submit"]:hover {
	background-position: 100% 0;

	transform: translateY(-2px);

}


 input[type="submit"]:hover::before {
	left: 130%;
}


 input[type="submit"]:active {
	transform: translateY(0);

	box-shadow:
		0 5px 12px rgba(54, 127, 202, .20);
}


.form-control {
	display: block;
	width: 100%;
	height: 42px;
	box-sizing: border-box;
	padding: 0 16px;
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	background: #fff;
	color: #333;
	font-family: inherit;
	font-size: 15px;
	line-height: 42px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

p.personal-data {
	display: none;
}