﻿body {
	font-family: 'Open Sans', 'Segoe UI', 'Helvetica Neue', sans-serif;
	font-weight: normal;
	margin: 0px;
	overflow-x: hidden;
}
a, a:visited, a:active  {
	text-decoration: none;
	outline: none;
	color: #3498DB;
}
a:hover {
	text-decoration: underline;
	color: #0E3F61;
}
.BackgroundImage {
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	z-index: -101;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.BackgroundVideo {
	display: block;
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
}
.loginFormContainer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 100%;
	max-width: 70%;
	text-align: center;
}
.loginFormTitle {
	font-family: 'OpenSans-Light', 'Open Sans Light', 'Open Sans', 'Segoe UI', 'Helvetica Neue', sans-serif;
	font-weight: 200;
	font-size: 32px;
	color: #FFFFFF;
	margin-bottom: 12px;
}
.loginForm {
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	max-width: 370px;
	text-align: left;
	background-color: rgba(255, 255, 255, .75);
	padding: 35px;
	border-radius: 4px;
}
.loginField {
	border-bottom: 1px solid #333333;
	margin-bottom: 26px;
}
.loginField input {
	background-color: transparent;
	border-color: transparent;
	outline-style: none;
	color: #000;
	font-size: 13px;
	height: 35px;
	width: 100%;
	border-width: 0;
}
.loginField .showingPlaceholder {
	color: #999999;
}
.loginField input::placeholder {
	color: #999999;
}
.loginCheckbox {
	margin-bottom: 17px;
}
.loginCheckbox label {
	color: #333333;
	margin-bottom: 16px;
	font-size: 13px;
	vertical-align: middle;
}
.loginCheckbox input[type="checkbox"] {
	margin-left: 0;
	margin-bottom: 0;
	vertical-align: middle;
}
.loginButton {
	background-color: rgba(102, 102, 102, 1);
	color: #FFFFFF;
	height: 44px;
	width: 100%;
	border-radius: 3px;
	border-width: 0;
	cursor: pointer;
}
.errorMessage {
	color: #E1141D;
	font-size: 13px;
	margin-bottom: 13px;
}
.forgotPassword {
	font-size: 13px;
	text-align: right;
	margin-top: 13px;
}
.requestPortal {
    margin-top: 2px;
}
.exactLogo {
	position: fixed;
	bottom: 0;
	right: 50px;
	height: 80px;
	background-color: transparent;
}
.exactLogo img {
	height: 100%;
}

/* Mobile */
@media only screen 
	and (max-device-width: 736px)
	and (orientation: portrait) {
	
.loginForm {
	max-width: 100%;
}
.loginFormTitle {
	font-size: 45px;
	text-align: center;
}
.loginField {
	margin-bottom: 42px;
}
.loginField input {
	font-size: 28px;
}
.loginCheckbox {
	margin-bottom: 24px;
}
.loginCheckbox label {
	font-size: 24px;
}
.loginCheckbox input[type="checkbox"] {
	width: 24px;
	height: 24px;
}
.loginButton {
	font-size: 28px;
	height: 60px;
}
.errorMessage {
	font-size: 24px;
}
.forgotPassword {
	font-size: 24px;
	margin-top: 24px;
}

}

/* Tablet */
@media only screen 
	and (min-device-width: 736px)
	and (max-device-width: 1024px) {
		
.loginForm {
	max-width: 600px;
}
.loginFormTitle {
	font-size: 45px;
}
.loginField input {
	font-size: 20px;
}
.loginCheckbox label {
	font-size: 18px;
}
.loginCheckbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
}
.loginButton {
	font-size: 20px;
	height: 60px;
}
.errorMessage {
	font-size: 18px;
}
.forgotPassword {
	font-size: 18px;
}

}

