@charset "utf-8";
/* CSS Document */

html {
	
}

body {
	background-color: #D7D7D7;
}

/* Start form styles */
form {
	box-sizing: border-box;
	width: 100%;
	max-width: 500px;
	margin: 50px auto;
	padding: 30px;
	background-color: #FFF;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.5);
	font: normal 16px sans-serif;
	font-family: 'Muli', sans-serif;
	text-align: center;
	border-radius: 10px;
}

form .form-row {
	text-align: left;
	max-width: 800px;
	margin: 25px auto 0;
	font-weight: 600;
}

form .from-row > label span {
	display: block;
	box-sizing: border-box;
	color: #F5F5F5;
	padding: 0 0 12px;
	min-width: 305px;
	font-size: 16px;
}

form input {
	box-sizing: border-box;
	box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.1);
	padding: 12px 18px;
	border 1px solid #dbdbdb;
}

form input[type=text],
form input[type=password] {
	background-color: #FAFAFA;
	min-width: 400px;
	width: 100%;
}

.button {
	display: inline-block;
	padding: 15px 25px;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	background-color: #FAFAFA;
	border: none;
	border-radius: 15px;
	box-shadow: 5px 10px 5px #ccc;
}

.button:hover {background-color: #eee}

.button:active {
	background-color: #eee;
	box-shadow: 5px 10px 5px #ccc;
	transform: translateY(4px);
}
/* End form styles */

/* Start custom styles */
.logout {
	position: absolute;
	top: 10px;
	right: 10px;
}

.kern {
	letter-spacing: -7px;
}

.red {
	font-size: 38px;
	color: #FF0000;
}

.silver {
	font-size: 38px;
	color: #999999;
}

.successMessage {
	font-weight: 400;
	text-align: center;
	color: #093;
}

.errorMessage {
	font-weight: 400;
	text-align: center;
	color: #f00;
}

a {
	text-decoration: none;
	color: black;
}

.decorated {
	text-decoration: underline;
	color: blue;
}
/* End custom styles */
