html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
	font-family: 'Open Sans', HelveticaNeue, Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
}

body
{
	background-color: #f9f9f9;
	font-size: 14px;
	color: #545454;
	text-shadow: 0 1px 0 #fff;
	margin: 0 auto;
}

#box, input, .top, #copyright, .loginBox
{
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

header, nav, footer {
	z-index: 100;
}

#maincont
{
	position: relative;
	width: 100%;
}




.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-stretch: normal;
	font-size: inherit;
	line-height: 1;
	font-family: FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pull-left {
	float: left!important;
}

.btn {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
}

.btn-default {
	color: #333;
	background-color: #fff;
	border-color: #ccc;
}

.btn-sm {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}

.top
{
	background-color: #081b26;
	height: 100px;
	width: 100%;
	background-image: url(../../../../img/encodify_orange_white.svg);
	background-repeat: no-repeat;
	background-position: 100px center;
	position: fixed;
	top: 0;
	left: 0;
	background-size: 180px;


	-moz-animation-name: dropHeader;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: ease-in;
	-moz-animation-duration: 0.35s;

	-webkit-animation-name: dropHeader;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-duration: 0.35s;

	animation-name: dropHeader;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.35s;
}


@-moz-keyframes dropHeader {
	0% {
		-moz-transform: translateY(-100px);
	}
	100% {
		-moz-transform: translateY(0);
	}
}
@-webkit-keyframes dropHeader {
	0% {
		-webkit-transform: translateY(-100px);
	}
	100% {
		-webkit-transform: translateY(0);
	}
}
@keyframes dropHeader {
	0% {
		transform: translateY(-100px);
	}
	100% {
		transform: translateY(0);
	}
}

#box
{
	position: relative;
	margin: auto;
	right: 0;
	left: 0;
	width: 360px;
	height: 100px;
}

.welcomeMessage {
	position: relative;
	margin: auto;
	margin-bottom: 20px;
}

.loginBox
{
	position: absolute;
	margin: auto;
	top: 190px;
	right: 0;
	left: 0;
	font-weight: 300;
	text-align: center;
	font-size: 30px;
	margin-bottom: 14px;
	height: 100px;
}

#box label { display: none; }

input
{
	font-family: 'Open Sans', HelveticaNeue, Arial, Helvetica, sans-serif;
	-webkit-appearance: none;
	margin: 0;
	width: 100%;
	display: block;
}

input:focus{
	outline: 0;
}

input#login, input#password
{
	border: 1px #ccc3ba solid;
	font-size: 16px;
	font-weight: 300;
	padding: 14px 0;
	text-indent: 14px;
	z-index: 100;
	position: relative;
}

input#login:focus, input#password:focus
{
	border-color: #3c8dbc;
}

input#login:focus, input#password:focus { z-index: 1000 !important; }

input#login
{
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

input#password
{
	-webkit-border-bottom-right-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-moz-border-radius-bottomright: 8px;
	-moz-border-radius-bottomleft: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
	top: -1px;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px white inset;
}

button
{
	font-family: 'Open Sans', HelveticaNeue, Arial, Helvetica, sans-serif;
	background-color: transparent;
	border: none;
	background-image: none;
	float: right;
	font-size: 16px;
	font-weight: 300;
	color: #545454;
	margin-top: 6px;
}

button:hover
{
	cursor: pointer;
	color: #3c8dbc;
}

button i
{
	font-size: 22px !important;
	vertical-align: top;
}

.forgotpw
{
	clear: both;
	text-align: center;
	background-image: url(devider.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	padding-top: 15px;
	font-size: 14px;
	margin-top: 50px;
}

.forgotpw a
{
	color: #999;
	text-decoration: none;
}

.forgotpw a:hover
{
	color: #3c8dbc;
	text-decoration: none;
}

#copyright
{
	display: inline-flex;
	justify-content: center;

	width: 100%;
	bottom: 0;
	position: fixed;

	padding: 24px 0;
	background-position: top;
	text-shadow: 0 1px 0 #fff;
	color: #000000;
	font-size: 14px;
	font-weight: 300;
	text-align: center;
	vertical-align: middle;
	display: -webkit-inline-flex;
	-webkit-align-items: center;
}

#copyright div {
	margin: 0 10px 0 10px;
}

#copyright a {
	display: flex;
}

#copyright img {
	text-decoration: none;
	width: 121px; /* original 751*118, 19*751/118 */
	height: 19px;
}

::-moz-selection
{
	color: #fff;
	background-color: #3c8dbc;
	text-shadow: none !important;
}

::selection
{
	color: #fff;
	background-color: #3c8dbc;
	text-shadow: none !important;
}


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

	#copyright { display: none; }

	.forgotpw
	{
		position: fixed;
		bottom: 48px;
		background-image: none;
		width: 100%;
		font-size: 14px;

		left: 50%;
		transform: translate(-50%, 0);
	}

	.new-user-request{
		bottom: 24px;
	}

	.top {
		width: 100%;
		background-position: center center;
	}

	.loginBox
	{
		font-size: 24px;
		top: 140px;
	}

	#box
	{
		width: 260px;
	}

	button
	{
		font-size: 20px;
		padding-right: none;
	}

}

/* LANDSCAPE */

@media screen and (max-device-width: 640px) and (orientation: landscape)
{
	input#login, input#password
	{
		padding: 8px 0;
	}

	.loginBox
	{
		font-size: 20px;
		top: 90px;
		display: none;
	}

	.top
	{
		height: 80px;
		background-position: center 18px;
	}

	button
	{
		font-size: 16px;
	}

	.forgotpw
	{
		bottom: 14px;
		left: -14px;
		font-size: 12px;
	}
}
