* {
	margin:0;
	padding:0;
	font-family:Arial, Sans-Serif;
	letter-spacing:-0.5px;
	outline:none;
}

body, html {
	width:100%;
	height:100%;
	text-align:center;
	background-color:#f5f9fa;
}

#center {
	width:100%;
	height:40%;
	margin-bottom:-170px;
}

#content {
	margin:auto;
	padding:20px 0;
	width:280px;
	height:420px;
	background-color:#FFF;
	border:2px solid #eee;
}

#content #logo {
	margin-bottom:10px;
}

#content #login {
	margin:auto;
	padding:5px 25px;
	font-size:13px;
	text-align:left;
	color:#999;
	font-weight:600;
}

#content #login #error {
	background-color:#FFAAAC;
	font-weight:600;
	color:#FFF;
	text-shadow:0 1px 0 #FF0000;
	padding:3px 0;
	text-align:center;
	margin:-8px 0 8px 0;
	display:none;
}

#content #login #loader { margin:8px 0 0 120px; display:none; }

#content #login input[type=text], #content #login input[type=password] {
	width: 220px;
	border-radius: 2px;
	border: 1px solid #CCC;
	padding: 10px;
	color: #333;
	font-size: 14px;
	margin-top: 5px;
}
#content #login input[type=text]:hover, #content #login input[type=password]:hover,
#content #login input[type=text]:focus, #content #login input[type=password]:focus {
	border-color:#b5b5b5;
	color:#a0a0a0;
}
#content #login input[type=text]:focus, #content #login input[type=password]:focus {
	box-shadow:0 0 15px 0px #dedede;
}

#content #login input[type=submit] {
	padding: 10px 25px 8px;
	color: #fff;
	background-color: #c83531;
	text-shadow: rgba(0,0,0,0.24) 0 1px 0;
	font-size: 16px;
	box-shadow: rgba(255,255,255,0.24) 0 2px 0 0 inset,#fff 0 1px 0 0;
	border: 1px solid #c83531;
	border-radius: 2px;
	margin-top: 10px;
	cursor:pointer;
	float:right;

}
#content #login input[type=submit]:hover { background-color: #794044; }

/*the container must be positioned relative:*/
.custom-select {
	position: relative;
	font-family:Arial, Sans-Serif;
}

.custom-select select {
	display: none; /*hide original SELECT element:*/
}

.select-selected {
	background-color: #a94f47;
}

/*style the arrow inside the select element:*/
.select-selected:after {
	position: absolute;
	content: "";
	top: 14px;
	right: 10px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
	border-color: transparent transparent #fff transparent;
	top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
	color: #ffffff;
	padding: 8px 16px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	cursor: pointer;
	user-select: none;
}

/*style items (options):*/
.select-items {
	position: absolute;
	background-color: #a94f47;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
	display: none;
}

.select-items div:hover, .same-as-selected {
	background-color: rgba(0, 0, 0, 0.1);
}
