@CHARSET "UTF-8";

/** LOGIN **/
.login-box {
	background-color: white;
	max-width: 340px;
	margin: 0 auto;
	margin-top: 5em;
	margin-bottom: 5em;
	top: 80px;
	padding-bottom: 30px;
	border-radius: 5px;
	box-shadow: 0 5px 50px rgba(0,0,0,0.4);
	text-align: center;
}

.login-box .box-header {
	display: flex;
	align-items: center;
	
	background-color: #665851;
	margin-top: 0;
	border-radius: 5px 5px 0 0;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.login-box .box-header img {
	margin-left: 1em;
	vertical-align: middle;
	width: 50px;
	height: 50px;
}

.login-box .box-header span {
	margin-left: 5px;
	font-variant: small-caps;
	font-size: 1.5em;
	margin-right: 20px;
	color: white;
}

.login-box label {
	font-weight: 700;
	font-size: .8em;
	color: #888;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 2em;
}

.login-box input {
	margin-bottom: 20px;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 2px;
	font-size: .9em;
	color: #888;
}

.login-box input:focus {
	outline: none;
	border-color: #665851;
	transition: 0.5s;
	color: #665851;
}

.login-box button {
	margin-top: 0px;
	border: 0;
	border-radius: 2px;
	color: white;
	padding: 10px;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 0.7em;
	letter-spacing: 1px;
	background-color: #665851;
	cursor:pointer;
	outline: none;
}

.login-box button:hover {
	opacity: 0.7;
	transition: 0.5s;
}

.login-box button:hover {
	opacity: 0.7;
	transition: 0.5s;
}