.form
{
	margin: 14px auto;
	padding: 14px;
	box-sizing: border-box;
	background-color: #DAEDF9;
	border: 1px solid #666;
	border-radius: 10px;
}
.form .field
{
	font-size: 13px;
	word-spacing: -4px;
}
.form .field > * { word-spacing: normal; }
.form .field + .field { margin-top: 14px; }
.form label
{
	display: inline-block;
	vertical-align: top;
	height: 21px;
	line-height: 21px;
	color: #666;
	font-size: 13px;
}
.form .required label::after
{
	content: "*";
	display: inline-block;
	color: #F00;
	margin-left: 5px;
}
.form input[type="text"],
.form input[type="password"],
.form textarea,
.form select
{
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	height: 21px;
}
.form input[type="text"]:focus,
.form input[type="password"]:focus,
.form textarea:focus,
.form select:focus
{
	outline: 1px solid #006091;
}
.form textarea { height: auto; }
.form button
{
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	height: 21px;
	border: 0;
	border-radius: 4px;
	background-color: #07A;
	background-image: -webkit-linear-gradient(top, #0087C9, #005581);
	background-image: -moz-linear-gradient(top, #0087C9, #005581);
	background-image: -ms-linear-gradient(top, #0087C9, #005581);
	background-image: -o-linear-gradient(top, #0087C9, #005581);
	color: #FFF;
	position: relative;
}
.form button.loader[disabled] { color: transparent; }
.form button.loader[disabled]::before
{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url("/img/loader.gif") center center no-repeat;
}

.errors, .success
{
	border-radius: 10px;
	background-color: #F9CECE;
	border: 1px solid #D00;
	margin: 14px auto;
	padding: 10px;
	text-align: center;
	color: #D00;
	line-height: 16px;
}
.errors li { text-align: left; }
.success
{
	background-color: #CEC;
	border: 1px solid #080;
	color: #080;
}

.form.add-signature label { width: 180px; }
.form.add-signature input { width: 437px; }
.form.add-signature textarea
{
	width: 437px;
	height: 128px;
}

.form.add-city label { width: 180px; }
.form.add-city input { width: 437px; }