@import url('https://fonts.googleapis.com/css?family=Open+Sans');

/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.p-form {
	width: 500px;
	color: #000;
	font-size: 100%;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0,20,40,.1), 0 2px 8px 0 rgba(50,55,90,.2);
	padding: 25px;
	font-family: "Open Sans", Arial, Helvetica;
}


.p-form__field {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-bottom: 25px;
}


.p-form__field .required {
	position: absolute;
	color: red;
	top: -3px;
	right: -1px;
	font-size: 12px;
}

.p-form__field .required.star {
	font-size: 30px;
}


.p-form__field label { display: none; }


.p-form__field input[type="text"],
.p-form__field select {
	box-sizing: border-box;
	padding: .72em .9em .65em;
	border-radius: 2px;
	width: 100%;
	border: 1px solid #d6d8d9;
	outline: none;
	line-height: 1.4em;
	font-family: inherit;
	height: auto;
	box-shadow: none;
	-webkit-box-shadow: none;
	-webkit-appearance: none;
	font-size: inherit;
	background: white;
}


.p-form__button {
	box-sizing: border-box;
	display: block;
	border: 0 none;
	background: #007223;
	color: #fff;
	text-shadow: 1px 0 3px #00641e;
	border-radius: 2px;
	padding: 11px 18px;
	font-size: 16px;
	width: 100%;
	font-weight: bold;
	cursor: pointer;
	text-align: center;
}


.p-form__field input::placeholder {
	color: #b3b2b3;
}


.p-form__field input:focus {
	border-color: #007223;
}


.p-form__legend {
	margin-bottom: 20px;
	font-size: 12px;
	color: grey;
}


.p-form__legend abbr {
	color: red;
	text-decoration: none;
	border: 0 none!important;
}


.p-form__responses {
	margin-bottom: 25px;
}


.p-form__response {
	font-weight: bold;
	font-family: "Open Sans", Arial, Helvetica;
}


.p-form__response--success + .p-form {
	display: none;
}