
/* --- CSS RESET SEE: http://meyerweb.com/eric/tools/css/reset/ --- */;

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

input:focus,button:focus,textarea:focus,select:focus
{
	outline: none
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* --- CUSTOM CSS BEGINS --- */

body
{
	background: #565759 url('images/login-bg.png') no-repeat center top;
	color: #403f3e;
	font-family: 'Open Sans', sans-serif;
	font-size: 12.5px;
	margin: 0;
}

/* basic CSS resets/helpers */
*
{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	position: relative;
}

.clearfix:after
{
	clear: both;
	content: '.';
	display: block;
	height: 0px;
	visibility: hidden;
}

div#login-bar
{
	background: #3a3b3c;
	margin-top: 172px;
	padding: 45px 0 55px 0;
}

a
{
	color: white;
}

div#container
{
	color: white;
	margin: 0 auto;
	padding-right: 16px;
	position: relative;
	width: 302px;
}

.site-name
{
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 30px;
}

.login-errors
{
	line-height: normal !important;
	padding-bottom: 20px;
}

.login-errors .error-msg
{
	color: #E54E4E;
	font-size: 14px;
	margin-bottom: 10px;
}

.login-errors .msg
{
	color: white;
	font-size: 14px;
	margin-bottom: 10px;
}

.login-form
{
	position: relative;
}

.login-form .login-field
{
	height: 40px;
	margin-bottom: 14px;
}

.login-form .login-field .field-icon
{
	background-image: url('images/login-sprites.png');
	background-repeat: no-repeat;
	display: block;
	float: left;
	height: 40px;
	width: 41px;
}

.login-form .login-field .icon-username		{ background-position: 0 0; }
.login-form .login-field .icon-password		{ background-position: -41px 0; }

.login-form .login-field input[type=text],
.login-form .login-field input[type=password]
{
	background: white;
	border: none;
	font-family: 'Open Sans', sans-serif;
	display: block;
	font-size: 16px;
	margin: 0 0 0 41px;
	height: 40px;
	padding: 0 15px;
	width: 245px;
}

.login-form button
{
	background: #e96a2f;
	border: none;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	height: 33px;
	padding: 0 14px;
}

.login-form .login-actions button.signin-btn
{
	float: left;
}

.login-form .login-actions a.forgot-pw
{
	color: white;
	float: right;
	font-size: 13px;
	font-style: italic;
	text-decoration: none;
}

div#license-container
{
	color: white;
	margin: 0 auto;
	width: 984px;
}

div#license-container .login-form
{
	padding: 0;
	margin: 0 auto;
	width: 302px;
}

div#license-contents 
{
	background: white;
    border: 1px solid black;
	color: black;
    height: 400px;
    line-height: normal;
    margin-bottom: 20px;
    overflow: scroll;
    padding: 20px;
}
