
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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; }

body, html {
	margin: 0;
	height: 100%;
	font-family: 'Arial';
	font-size: 16px;
	color: #666666;
	background-color: #f5821f;
}

.left {
	float: left;
}

.logo {
	max-width: 309px;
	margin: 0 auto 40px;
	display: block;
}

.login-content {
	flex-direction: column;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	top:0; bottom: 0;
	width: 50%;
	height: 100%;
	background-color: #f5821f;
}

.login-left-splash {
	width: 50%;
	background: #fff url(../images/login_cover.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
}

.ob-row {
	margin-bottom: 20px;
	padding: 0 10px;
}

#frmLogin {
	max-width: 300px;
	margin: 0 auto;
    padding: 20px;
    background-color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(245,130,31,1);
	-moz-box-shadow: 2px 2px 5px 0px rgba(245,130,31,1);
	box-shadow: 2px 2px 5px 0px rgba(245,130,31,1);
}

#frmLogin label {
	display: block;
	margin-bottom: 5px;
	margin-top: 10px;
	font-size: 16px;
	color: #000000;
	font-weight: bold;
}


#frmLogin input[type='text'],
#frmLogin input[type='password'],
#frmLogin input[type='email']
{
	width: 100%;
	/* max-width: 268px; */
	background-color: #fff !important;
	height: 30px;
	border: 1px solid #ccc;
	padding-left: 10px;
	font-size: 16px;
}


#ForgotPassword {
	text-align: center;
	margin-top: 10px;
}

.center {
	text-align: center;
}

.g-btn,
#frmLogin input[type='submit']{

  	padding: 10px 40px !important;
  	font-family: 'Arial';
  	text-decoration: none;
    font-size: 15px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 5px 0;
    border: none!important;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: color .3s,background-color .3s,box-shadow .3s;
    transition: color .3s,background-color .3s,box-shadow .3s;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    padding: 5px 20px;
}

#frmLogin .Actions {
	margin-top: 10px;
}

.support-links {
	margin-top: 20px;
}

.support-links a {
	display: block;
	padding: 6px;
	text-align: center;
	color: #661c69;
}

.support-links a:hover {
	display: block;
	padding: 6px;
	text-align: center;
	color: #f5821f;
}

#frmLogin input[type='submit'] {
	content: 'Retrive Password';
}

.g-btn.color_secondary, #frmLogin input[type='submit']{
  box-shadow: 0 0 0 2px #661c69 inset;
  color: #fff;
  background-color: #661c69;

}
.g-btn.color_secondary:hover, #frmLogin input[type='submit']:hover {
  	cursor: pointer;
    box-shadow: none;
    background-color: #f5821f;
    color: #661c69;
}

.login-content  .g-btn.color_secondary, #frmLogin input[type='submit'] {
	width: 100%;
}

.disclaimer {
	border-top: 1px solid #e2e2e2;
	margin-top: 20px;
	font-size: 12px;
	padding: 10px;
}

@media screen and (max-width:1700px) {

		.login-left-splash {
			background: #fff url(../images/login_cover.jpg) no-repeat bottom center;
			-webkit-background-size: auto;
			-moz-background-size: auto;
			-o-background-size: auto;
			background-size: auto;
		}

}
@media screen and (max-width:1038px) {

	.login-left-splash {
		display: none;
	}

	.login-content {
		width: 100%;
	}

}
