﻿/*
Login page
*/

.shadow-40{
	box-shadow: 0 5px 10px rgba(0,0,0,0.4);
}

#login-page {
	background: #144591;
}

#backing-container {
	background-color: #144591;
	position: absolute;
	opacity: 1;
	display: inline-block;
	width: 100%;
	height: 100%;
	/*background-image: url("../Images/oil-rig-1.jpg");*/
	background-position: bottom !important;
	background-size: 100% !important;
	top: 0;
	left: 0;
}

.validate-error{
	position: absolute;
	display: none;
	font-size: 18px;
	font-weight: bold;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: rgb(225,0,18);
	color: white;
	margin-top: 22px;
	right: 50px;
	vertical-align: top;
	box-shadow: 0 2px 5px rgba(0,0,0,0.4);
	animation: throb 1s infinite linear;
}

.validate-error::after{
	content: " ";
	position: absolute;
	display: inline-block;
	background: green;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	left: 0;
	z-index: -100;
	background: rgb(225,0,18);
	animation: transparent-throb 1s infinite linear;
}

@keyframes throb{
	0%{transform: scale(1.1,1.1);}
	100%{transform: scale(1,1);}
}

@keyframes transparent-throb{
	0%{transform: scale(1.1,1.1); opacity: 0.5;}
	50%{transform: scale(1.5,1.5); opacity: 0.125;}
	100%{transform: scale(2,2); opacity: 0;}
}

.input-validation-error{
	border: 1px solid rgb(225,0,18) !important;
}

.text-control:focus{
	box-shadow: 0 5px 10px rgba(0,0,0,0.4);
	border: 1px solid #c7c7c7;
}

.login-container {
	width: 380px;
	margin-left: -190px;
	left: 50%;
	top: 50%;
	margin-top: -250px;
	position: absolute;
	background: none;
	padding: 20px;
	padding-top: 30px;
	text-align: center;
	min-height: 400px;
	overflow: hidden;
	opacity: 1;
	background: rgba(255,255,255,0.4);
}

	.login-container .error {
		font-size: 13px;
		color: rgb(225,0,18);
		margin-top: 40px;
	}

	.login-container input {
		margin: 15px 0 -10px 0;
		line-height: 38px;
		height: 38px;
		width: 290px;
		border: 1px solid #c7c7c7;
		padding: 0 10px 0 10px;
		font-size: 16px;
		display: inline-block;
	}

	.login-container .button {
		height: 38px;
		width: 292px;
		background-color: #dd5231;
		border: 1px solid #b0472e;
		color: white;
		background-image: url("../images/padlock-white-24.png");
		background-repeat: no-repeat;
		background-position: 98% center;
	}

		.login-container .button:hover {
			cursor: pointer;
		}

	.login-container input:active, .login-container input:focus {
		outline: none;
	}

	.login-container .button:focus, .login-container .button:active {
		outline: none;
	}

	.login-container img{
		width: 158px;
	}

.forgotten-box{
	height: 462px;
	margin-top: -300px;
}

.forgotten-box p{
	color: white;
	font-size: 13px;
}

footer {
	position: fixed;
	bottom: 0;
	width: 99%;
	color: white;
	padding: 0 0 10px 0;
	font-size: 12px;
	font-weight: 400;
}

	footer a, .login-container a {
		color: white;
		text-decoration: none;
		font-size: 12px;
		font-weight: 400;
	}

	footer a{
		margin-left: 10px;
	}

		footer a:hover, .login-container a:hover {
			text-decoration: underline;
		}

.left {
	float: left;
}

.right {
	float: right;
}

input:focus::-webkit-input-placeholder {
	color: transparent !important;
}

input:focus::-moz-placeholder {
	color: transparent !important;
}

input:focus:-moz-placeholder {
	color: transparent !important;
}

@media(max-width: 600px) {
	footer {
		text-align: center;
		position: relative;
	}

		footer div {
			width: 100%;
		}

			footer div.right {
				font-weight: bold;
			}
}

#global-bar ul {
	list-style: none;
	display: inline-block;
	line-height: 50px;
	margin: 0;
	padding-left: 0;
}

	#global-bar ul li {
		float: left;
		margin: 0 5px 0 5px;
		font-weight: 400;
	}

		#global-bar ul li:nth-child(1) {
			font-weight: 300;
		}

#mainnav-container .list-header {
	font-size: 14px;
}

#mainnav-container li a {
	font-size: 13px;
}

@media(max-width: 767px) {
	#global-bar ul li:nth-child(1n+2) {
		display: none;
	}
}