@font-face {
	font-family: IBMPlexSans;
	src: url("IBMPlexSans/IBMPlexSans-Regular.ttf") format("truetype");
}

@font-face {
	font-family: IBMPlexSans-Bold;
	font-weight: bold;
	src: url("IBMPlexSans/IBMPlexSans-Bold.ttf") format("truetype");
}

@font-face {
	font-family: IBMPlexSans-SemiBold;
	font-weight: bold;
	src: url("IBMPlexSans/IBMPlexSans-SemiBold.ttf") format("truetype");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body, html {
	height: 100%;
	font-family: 'IBMPlexSans', arial, helvetica, sans-serif;
}

a {
	font-family: 'IBMPlexSans-SemiBold', arial, helvetica, sans-serif;
	color: #0058FF;
	font-size: 14px;
	text-decoration: none;
}

a:hover {
	color: #0058FF;
	cursor: pointer;
	text-decoration: underline;
}

p {
	font-size: 14px;
}

#header {
	background: url(../images/inmoment-logo-full-color.svg) no-repeat;
	height: 60px;
	padding-left: 2em;
}

#loginPaneWrapper {
	width: 100%;
	min-height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 15px;
	background: url(../images/eSaaS_login_bg.png) 100% 100% no-repeat;
	background-size: cover;
}

#loginPaneWrapper:before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.65)
}

#loginPane {
	background: #e3e3e3; /* For IE8 */
	background: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
	padding-top: 2em;
}

#formWrapper {
	padding: 1em 2em 2em 2em;
}

	#formWrapper input.formField {
		font-family: 'IBMPlexSans', arial, helvetica, sans-serif;
		border: 1px solid #1a1919;
		box-sizing: border-box;
		display: block;
		height: 32px;
		margin: 14px 0;
		padding: 0 8px;
		line-height: 31px;
		width: 300px;
		border-radius: 20px;
	}

		#formWrapper input.formField:focus {
			outline-color: #7c8790;
		}

#invalidLogin, #resetMessage, #resetFailed {
	display: block;
}

input.error {
	border-color: #c65252 !important;
	outline-color: #c65252 !important;
}

#loginForm.error .forgotPasswordLink,
#formWrapper.lockedOut .forgotPasswordLink {
	display: inline-block;
}

#formWrapper label * {
	font-family: 'IBMPlexSans', arial, helvetica, sans-serif;
	line-height: 13px;
	vertical-align: middle;
}

#formWrapper .chkRemember {
	padding-left: 7px;
}

#formWrapper .signinbutton {
	margin-top: 10px;
}

#formWrapper label {
	display: block;
	font-size: 14px;
	line-height: 16px;
}

#formWrapper h2 {
	cursor: default;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}

#formWrapper button, #formWrapper .button {
	font-family: 'IBMPlexSans', arial, helvetica, sans-serif;
	margin: 10px 12px 10px 0 !important;
	padding: 0.31em 2.2em 0.35em 2.2em !important;
	border-radius: 13px;
	border-width: 0;
}

	#formWrapper button:hover, #formWrapper .button:hover {
		cursor: pointer;
	}

	#formWrapper button:active,
	#formWrapper button:focus, #formWrapper .button:active, #formWrapper .button:focus {
		outline-color: #253746;
	}

	#formWrapper .lgnButton, #formWrapper .button.lgnButton {
		background-color: #253746;
		color: #FFFFFF;
	}

#formWrapper .expiredSession {
	background: #FEF7EA 0% 0% no-repeat padding-box;
	border: 2px solid #E67300;
	font-family: 'IBMPlexSans', arial, helvetica, sans-serif;
	border-radius: 5px;
	height: 50px;
	color: #B15800;
	padding-top: 10px;
	display: none;
}

#formWrapper .privacy_policy {
	border-top: 1px solid #ccc;
	padding-top: 1em;
	margin-top: 1em;
}

#newsPane {
	border-top: 1px solid #ccc;
	padding: 12px 10px;
	text-align: center;
}

.mcxInfobox {
	background: #e3e3e3 url('../../Shared/Images/infoGreen16.png') no-repeat 14px 9px; /* For IE8 */
	background: rgba(227,227,227,0.95) url('../../Shared/Images/infoGreen16.png') no-repeat 14px 9px;
	box-sizing: border-box;
	font-size: 15px;
	min-height: 26px;
	line-height: 26px;
	margin: 0;
	position: absolute;
	width: 100%;
	z-index: 2;
}

	.mcxInfobox span {
		margin-left: 15px;
	}

	.mcxInfobox.withClose div {
		background: url('../../shared/Images/Sprites/icon_sprites.png') no-repeat -11px -2893px; /* update with icon_sprites-xGray8 OFFSET +5 +6 */
		cursor: pointer;
		display: inline-block;
		height: 20px;
		margin: 8px 5px 0 12px;
		position: absolute;
		right: 0;
		top: 0;
		width: 20px;
	}

#invalidLogin, #resetFailed {
	color: #c65252;
	font-size: 14px;
	text-transform: uppercase;
}

#lockedOut h2, #expired h2 {
	color: #c65252;
	text-transform: uppercase;
}

#formWrapper.forgotPassword #forgotPasswordForm {
	display: block;
}

#newsPane IFRAME {
	border: 0px;
	height: 254px;
	width: 333px;
	overflow: hidden;
	margin-top: 10px;
}

::-webkit-input-placeholder {
	color: #6d7072;
	text-transform: inherit;
}

::-moz-placeholder {
	color: #6d7072;
	text-transform: inherit;
}

:-ms-input-placeholder {
	color: #6d7072;
	text-transform: inherit;
}

@media only screen and (max-height: 635px), only screen and (max-device-height: 635px) {
	#newsPane {
		display: none;
	}
}
