﻿@import url(http://fonts.googleapis.com/css?family=Vibur);

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-family: arial;
}

body {
    background: #414142; /*#576b76;*/
    background-image: url('../Images/revised-find-a-forklift.jpg');
    background-repeat: no-repeat;
}

.login-form {
	width: 50%;
	padding: 40px 30px;
	background: #FFFFFF;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.form-group {
	position: relative;
	margin-bottom: 15px;
}

.form-control {
	width: 100%;
	height: 30px;
	border: none;
	padding: 5px 7px 5px 15px;
	background: #fff;
	color: #053A4F;
	font-size: 12pt;
	border: 2px solid #053A4F;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

	.form-control:focus, .form-control:focus + .fa {
		border-color: #053A4F;
		color: #F26A21;
	}

.form-group .fa {
	position: absolute;
	right: 15px;
	top: 17px;
	color: #F26A21;
}

.log-status.wrong-entry {
	-moz-animation: wrong-log 0.3s;
	-webkit-animation: wrong-log 0.3s;
	animation: wrong-log 0.3s;
}

	.log-status.wrong-entry .form-control, .wrong-entry .form-control + .fa {
		border-color: #ed1c24;
		color: #ed1c24;
	}

.log-btn {
	background: #F26A21;
	display: inline-block;
	width: 80%;
	font-size: 18px;
	height: 35px;
	color: #fff;
	text-decoration: none;
	border: none;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

	.log-btn:hover {
		cursor: pointer;
		background: #ec0a1e;
	}

.legend {
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: 11pt;
	font-weight: bold;
	color: #595E61;
}

.title {
	font-family:  Geneva, Verdana, sans-serif;
	font-size: 15pt;
	font-weight: bold;
	color: #ed1b24;
}

.link {
	text-decoration: none;
	color: #C6C6C6;
	float: right;
	font-size: 12px;
	margin-bottom: 15px;
}

	.link:hover {
		text-decoration: underline;
		color: #8C918F;
	}

.alert {
	display: none;
	font-size: 12px;
	color: #f00;
	float: left;
}

.images {
	width: 100%;
	height: auto;
}

@-moz-keyframes wrong-log {
	0%, 100% {
		left: 0px;
	}

	20%, 60% {
		left: 15px;
	}

	40%, 80% {
		left: -15px;
	}
}

@-webkit-keyframes wrong-log {
	0%, 100% {
		left: 0px;
	}

	20%, 60% {
		left: 15px;
	}

	40%, 80% {
		left: -15px;
	}
}

@keyframes wrong-log {
	0%, 100% {
		left: 0px;
	}

	20%, 60% {
		left: 15px;
	}

	40%, 80% {
		left: -15px;
	}
}
