input[type="text"] {
	border: 1px solid #686868;
	border-radius: 5px;
	width: 100%;
	-moz-box-shadow:  inset 2px 3px 0px 0px #fef2fe;
	-webkit-box-shadow: inset 2px 3px 0px 0px #fef2fe;
	box-shadow:         inset 2px 3px 0px 0px #fef2fe;
	background-color: white;
}
textarea {
	resize: none;
	border: 1px solid #686868;
	border-radius: 5px;
	height: 150px;
	-moz-box-shadow:    inset 2px 3px 0px 0px #fef2fe;
	-webkit-box-shadow: inset 2px 3px 0px 0px #fef2fe;
	box-shadow:         inset 2px 3px 0px 0px #fef2fe;
	background-color: white;
}
:focus {
	outline: none;
}
.capitalize {
	text-transform: capitalize;
}

/*https://css-tricks.com/snippets/css/css-box-shadow/*/
.shadow {
  -moz-box-shadow:    3px 3px 5px 6px #ccc;
  -webkit-box-shadow: 3px 3px 5px 6px #ccc;
  box-shadow:         inset 3px 3px 5px 6px #ccc;
  /*box-shadow:         inset 3px 3px 5px 6px #ccc;*/
}

label {
	/*margin:0 calc(0em * -1) 0 0;*/
	font-family:"Open Sans",sans-serif;
	font-size: 18px;
	font-weight: 300;
	/*font-style:normal;
	line-height:1.4;*/
	/*letter-spacing:0em;
	text-transform:none;*/
}

input {
	padding: 5px;
	font-size: 18px;
	font-weight: 300;
	color: #686868;
}

.form-feedback {
	color: red;
	font-family:"Open Sans",sans-serif;
	font-weight: 100;
	margin-top: 5px;
}

form label, form span {
	display: inline-block;
	margin-top: 20px;
	margin-bottom: 10px;
}
.required:after { 
    content: " *";
    color: grey;
}
.left-half {
	width: 47%;
	display: inline-block;
}
.right-half {
	width: 47%;
	float: right;
}
