html,body{
	height: 100%;
	margin: 0;
	padding: 0;
	/*background-color:rgb(231, 171, 51)!important; */
	font: 13px/1.7em 'Open Sans';
}

#header{
	background-color: #2f3c48;
	height: 100%;
	border-bottom: 2px ridge #EEE;0px;
}

#holder {
	min-height: 100%;
	position:relative;

}

#body {
	padding-bottom:80px;
}

#footer{
	background-color: #2f3c48;
	bottom: 0;
	height: 85px;
	left: 0;
	position: absolute;
	right: 0;
	border-top: 2px ridge #EEE;
}
#logo {
	padding-top:20px;
}

.account-container {
	background: #f9f9f9;
	border: 1px solid #d5d5d5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}



.login {
	width: 325px;
	margin: 10% auto;
}

.login-fields input,select {
	font-family: 'Open Sans';
	font-size: 13px;
	color: #8e8d8d;
	padding: 11px 15px 10px 10px;
	border: 1px solid #d5d5d5;
	width: 280px;
	display: block;
	margin: 0;
}
.signup {
	width: 325px;
	margin: 5px auto;
}
.signup input{
	padding: 11px 15px 10px 10px !important;
	width: 295px !important;
	background-color: #FFF !important;
}
.signup select{
	width: 322px !important;
	padding: 11px 15px 10px 10px !important;
}
.username-field { background: url(../../driving-theory/images/icons8-mobile-40.png) no-repeat; }

.password-field { background: url(../../driving-theory/images/icons8-key-40.png) no-repeat; }



.submit-button {
	background-color: rgb(84,150,205);
	color: #FFF !important;
	width:100px;
	padding:10px;
	border: 1px solid #EEE;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	cursor:pointer;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.09em;
}

.login-actions {
	margin-top: 20px;
}

.login-header {
	text-align: center;
	background: #EEEEEE;
	padding: 0.01em;
	font-size: x-small;
}

.login-extra {
	display: block;
	width: 300px;
	margin: 1.5em auto;
	text-align: right;
	line-height: 19px;
}
i.gj-icon {
	display:none;
}

.error {
	background-color:#c95a49;
}

.success {
	background:#4e71ba;
}

.pop-message {
	width:auto;
	padding: 10px;
	color:#FFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display:none;
	margin-top: 10px;
}

.required::before {
	content: '*';
	color:Firebrick;
}

.ns-logo {
	height:75px;
	float:left;
	padding-left:10px
}

.center-screen {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
  }

  .img {
	border:2px solid #fff;
	box-shadow: 10px 10px 5px #ccc;
	-moz-box-shadow: 10px 10px 5px #ccc;
	-webkit-box-shadow: 10px 10px 5px #ccc;
	-khtml-box-shadow: 10px 10px 5px #ccc;
  }

  h1 {
	margin: 0;
	font-family: 'Julius Sans One';
	font-weight: bold;
	color: inherit;
	text-rendering: optimizelegibility;
	margin-top:50px; 
	color:burlywood;
	text-shadow: 2px 2px 4px #afac90;
	font-size: 5em;
}

.left-container {
	width:70%;float:left;height:100%;background:#2f3c48;text-align:center;
}

/* Customize the label (the container) */
.container {
	display: block;
	position: relative;
	padding-left: 26px;
	/*margin-bottom: 12px;*/
	cursor: pointer;
	font-size: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	/*background-color: #2f3c48;*/
	border: 1px solid #8e8d8d;
}

/* On mouse-over, add a grey background color */
	.container:hover input ~ .checkmark {
	/*background-color: #98ccfd;*/
	border-color:#2f3c48;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
	/*background-color: #98ccfd;*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
	.container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
	.container .checkmark:after {
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #414c53;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}