@charset "utf-8";
/* CSS Document */

form {
}

fieldset {
	border:none;
	padding:0;
}

form div.field {
	margin-bottom:12px;
}

label {
	line-height:2em;
}

input:not([type]), input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"] {
	padding:3px;
	height:150%;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	border:1px solid #ccc;

	width:250px;

	box-sizing:border-box;
 	-moz-box-sizing:border-box;
  	-webkit-box-sizing:border-box;
}

input[type="submit"] {
	padding:10px 20px;

	background-color:#090A26;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	border:none;
	color:#fff;
	font-size:normal;
	cursor:pointer;

	transition: background-color 0.5s;
	-moz-transition: background-color 0.5s; /* Firefox 4 */
	-webkit-transition: background-color 0.5s; /* Safari and Chrome */
	-o-transition: background-color 0.5s; /* Opera */
}

input[type="submit"]:hover {
	background-color:#2F405F;
}

select {
	padding:3px;
	height:150%;

	border:1px solid #ccc;

	width:250px;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	box-sizing:border-box;
 	-moz-box-sizing:border-box;
  	-webkit-box-sizing:border-box;
}

textarea {
	border:1px solid #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	resize:vertical;

	width:250px;

	box-sizing:border-box;
 	-moz-box-sizing:border-box;
  	-webkit-box-sizing:border-box;

	font-family:inherit;
}

textarea:focus {
	outline-color:#18A192;
}

.checkbox, .radio {
	width:auto;
	line-height:2em;
	height:auto;
	vertical-align:middle !important;
}