.form .field
{
	font-size: 13px;
	word-spacing: -4px;
	display: block;
}
.form .field > *
{
	word-spacing: normal;
	display: inline-block;
	vertical-align: top;
}
.form .field + .field { margin-top: 3px; }
.form .label
{
	height: 21px;
	line-height: 22px;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	background-color: #548A58;
	text-transform: uppercase;
	text-indent: 6px;
	margin-right: 5px;
}
.form .field > input[type=text],
.form .field > input[type=password],
.form .field > input[type=number],
.form .field > input[type=email],
.form .field > textarea,
.form .field > select
{
	border: 1px solid #FFF;
	background-color: #74B978;
	height: 21px;
	padding-left: 2px;
	font-size: 12px;
	color: #0F5823;
	box-sizing: border-box;
	font-weight: bold;
	outline: none;
}
.form .field > input[type=text]:hover,
.form .field > input[type=password]:hover,
.form .field > input[type=number]:hover,
.form .field > input[type=email]:hover,
.form .field > textarea:hover,
.form .field > select:hover
{
	border-color: #0F0;
}
.form .field > input[type=text]:focus,
.form .field > input[type=password]:focus,
.form .field > input[type=number]:focus,
.form .field > input[type=email]:focus,
.form .field > textarea:focus,
.form .field > select:focus
{
	border-color: #046B09;
}
.form .field script { display: none; }

.button
{
	display: inline-block;
	height: 21px;
	line-height: 20px;
	padding: 0;
	border: 1px solid #9ACE9E;
	background-color: #046B09;
	color: #FF0;
	font-size: 13px;
	font-weight: bold;
	cursor: default;
	vertical-align: top;
	box-sizing: border-box;
}
.button:hover { text-decoration: none; }
.button.loader:disabled
{
	color: transparent;
	background-image: url("/img/loaders/button.gif");
	background-position: center center;
	background-repeat: no-repeat;
}