*:not(input):not(textarea) {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	user-select: none;
}
* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font: 16px/18px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
.mt10{margin-top: 10px;}
body {
	background: url(img/background-noise.png) #e1e1e1;
	padding: 20px;
}
button {
	position: relative;
	display: inline-block;
	background-color: #c9cac9;
	height: 40px;
	padding: 0 25px;
	margin-bottom: 5px;
	cursor: pointer;
	border-radius: 3px;
}
button[default] {
	background-color: #1ab90f;
	color: #ffffff;
}
button[default]:hover {
	background-color: #0f8b07;
}
field {
	position: relative;
	display: inline-block;
	width: 100%;
}
field[label] {
	margin-top: 20px;
}
field[label]::before {
	position: absolute;
	content: attr(label);
	left: 5px;
	top: -18px;
	color: #717171;
	font-size: 14px;
	text-shadow: 0 1px #f5f5f5;
}
field input[type="text"], field input[type="password"], field textarea, field[select] {
	position: relative;
	display: block;
	background: none;
	width: 100%;
	background-color: #ffffff;
	padding: 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	border-radius: 3px;
	vertical-align: top;
	border: 1px solid #adadad;
	-moz-box-shadow: 0 2px #d1d1d1;
	box-shadow: 0 2px #d1d1d1;
	height: 40px;
}
field[error] input[type="text"], field[error] input[type="password"] {
	border-color: #bc0000;
	color: #7c0000;
}
field[message]::after {
	content: attr(message);
	position: relative;
	display: block;
	color: #16a613;
	padding-bottom: 10px;
	font-size: 13px;
	line-height: 12px;
}
field[error]::after {
	color: #b30b0b;
}
field input[type="text"]:hover, field input[type="password"]:hover, field textarea:hover, field[select]:hover {
	border-color: #158dca;
}
field input[type="text"]:focus, field input[type="password"]:focus, field textarea:focus, field[select][open] {
	border-color: #3bb2ee;
	-moz-box-shadow: inset 0 1px 3px #d4d4d4, 0 0 5px #158dca;
	box-shadow: inset 0 1px 3px #d4d4d4, 0 0 5px #158dca;
}
field[error] input[type="text"]:hover, field[error] input[type="password"]:hover {
	border-color: #f20e0e;
}
field[error] input[type="text"]:focus, field[error] input[type="password"]:focus {
	border-color: #f20e0e;
	-moz-box-shadow: inset 0 1px 3px #f59999, 0 0 5px #d8595c;
	box-shadow: inset 0 1px 3px #f59999, 0 0 5px #d8595c;
}
.loginw {
	position: relative;
	width: 300px;
	margin: auto;
	padding-top: 250px;
}
.loginw img {
	position: absolute;
	top: 60px;
	width: 300px;
	left: 50%;
	margin-left: -152px;
}
