/* -- General Formatting */

body {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	background-color: #EBEBEB;
}

b, strong {
	font-weight: 700;
}

table {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

table td {
	vertical-align: middle;
}

form .field input[type="text"],
form .field input[type="password"] {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	border: 0;
	width: 100%;
	box-sizing: border-box;
	line-height: 50px;
	padding: 0 15px;
	font-size: 20px;
}

form .button input[type="submit"],
form .button input[type="button"] {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	border: 0;
	width: 100%;
	line-height: 50px;
	background-color: #0198F1;
	font-weight: 600;
	color: #FFF;
	text-transform: uppercase;
	font-size: 20px;
}



/* -- Login Formatting */

.login {
	width: 275px;
	background-color: #CCC;
	padding: 15px;
	margin: 15px auto;
	border-radius: 5px;
	box-shadow: 0 0 50px rgba(0,0,0,.10);
}

.login h2 {
	font-weight: 300;
    color: #DD3A29;
}

.login .logo {
	margin-bottom: 15px;
	text-align: center;
}

.login .logo img {
	width: 75%;
}

.login .field {
	margin: 10px 0;
}

.login .error {
	margin: 10px 0;
	text-align: center;
	background-color: #FCC;
	padding: 10px;
	font-size: 14px;
}

.login label {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
}

.login .or {
	text-align: center;
	margin: 15px 0;
	color: #666;
	font-style: italic;
}




