/*
    ECS Login Page styles
*/

body{
	margin: 0;
	padding: 0;
	background: #fff;
	color: #fff;
	font-family: Arial;
	font-size: 12px;
}

p.small{
	font-family: ‘Trebuchet MS’, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 50;
	font-variant: normal;
	line-height: .4;
}

.trademark{
	font-size: 15px;
	font-weight: 50;
	line-height: .4;
	vertical-align: super;
}

.important{
	color: #10680C !important;
	font-family: Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-variant: normal;
	font-size: 55px;
	font-weight: 550;
	line-height: 110%;
}

.body{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background-image: url("../img/background.jpg");
	background-size: cover;
	z-index: 0;
}

.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}

.logo {
	position: absolute;
	top: calc(50% - 195px);
	left: calc(50% - 40px);
	z-index: 2;
}

.header{
	position: absolute;
	top: calc(50% - 70px);
	left: calc(50% - 325px);
	z-index: 2;
}

.header div{
	text-align: center;
	float: left;
	color: #fff;
	font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
	font-variant: small-caps;
	font-size: 35px;
	font-weight: 200;
	line-height: 130%;
}

.login{
	position: absolute;
	top: calc(50% - 75px);
	left: calc(50% - 50px);
	height: 150px;
	width: 350px;
	padding: 10px;
	z-index: 2;
}

.login input[type=text]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
}

.login input[type=password]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}

.login input[type=submit]{
	width: 260px;
	height: 35px;
	background: #fff;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #a18d6c;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}

.login input[type=submit]:hover{
	opacity: 0.8;
}

.login input[type=submit]:active{
	opacity: 0.6;
}

.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=submit]:focus{
	outline: none;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}

/* VCO Adds media query with mobile styling */
@media only screen and (max-width:980px) {
	.grad, .logo, .header {
		display: none;
	}

	.body {
		background-color: #0a640a;
		background-image: url("../img/ecslogo.jpg");
		position: absolute;
		background-position: right 20px;
    background-size: contain;
    background-repeat: no-repeat;
	}

	.login {
		top: 25%;
		left: 10%;
		width: 80%;
	}

	form {
		width: 100% !important;
	}

	input {
	  width: 100% !important;
		font-size: 2rem !important;
		height: 6rem !important;
		background-color: white !important;
		color: black !important;
		margin-bottom: 2rem !important;
	}

	input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	  color: black;
	  opacity: 1; /* Firefox */
		text-align: right !important;
		padding-right: 2rem !important;
		text-transform: capitalize;
	}

	input:last-of-type {
		width: 80% !important;
		border-radius: 40px !important;
		margin: 6rem 0 0 10% !important;
	}
}
