/**
 * @filesource	login.css
 * @copyright	Copyright (c) 2015, smartblue AG
 * @version		1.0
 * @author		Tudor Rusu <tudor.rusu@smartblue.de>
 * @license		All Rights Reserved.
 * @created		1.0 - 2015-01-12 00:00:00 GMT+1
 * @modified	
 *
 * @description	The purpose of this file is to provide project custom login CSS style
 */

/* #Site Styles
 ==================================================================================================== */
html,
body {
	height: 100%;
	background: transparent;
}
html { 
	background: url(../img/bck_sb.jpg) no-repeat top right fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
	display: table;
	width: 100%;
	height: 100%; /* For at least Firefox */
	min-height: 100%;
}
.site-wrapper-inner {
	display: table-cell;
	vertical-align: middle;
}
.login-container {
	margin-right: auto;
	margin-left: auto;
}
#login-form {
	max-width: 300px;
	padding: 15px;
	margin: 0 auto;
	background: #FFFFFF;
	-webkit-box-shadow: 0 0 30px 0px #00497A;
	box-shadow: 0 0 30px 0px #00497A;
}
.logo { 
	background: url(../img/logo.png) no-repeat top left;
	min-height: 30px;
	margin-bottom: 15px;
}
.logo h1 {
	margin: 0;
	font-size: 18px;
	line-height: 18px;
	padding: 14px 0 0 150px;
}
.form-group {
	margin-bottom: 5px;
	min-height: 38px;
}
.form-group.last {
	margin-bottom: 0;
}
select, 
input[type="text"], 
input[type="password"] {
	height: 38px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: border linear .2s, box-shadow linear .2s;
	-moz-transition: border linear .2s, box-shadow linear .2s;
	-o-transition: border linear .2s, box-shadow linear .2s;
	transition: border linear .2s, box-shadow linear .2s;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
select {
	padding: 2px 6px 5px 6px;
	border: 1px solid #CCCCCC;
}
.transformSelect {
	margin: 0;
	padding: 0;
	list-style: none;
	outline: none;
	resize: none;
	float: right;
}
.transformSelect li {
	position: relative;
	list-style: none;
	border: 1px solid #CCCCCC;
	height: 38px;
}
.transformSelect span {
	cursor: pointer;
	display: inline-block;
	left: 0;
	margin: 0;
	padding: 3px 5px;
	top: 0;
}
.transformSelect span {
	margin-right: 20px;
	margin-top: 5px;
}
.transformSelect ul {
	position: absolute;
	border: 1px solid #CCCCCC;
	border-top: 0;
	margin: 5px 0 0 -1px;
	background: #FFFFFF;
	padding: 0;
}
.transformSelect ul li {
	height: auto;
	border: none;
}
.transformSelect ul li:hover {
	background: #009FE4;
	color: #FFFFFF;
}
.transformSelect ul span {
	border: 0;
	background: none;
	margin-right: 0px;
	margin-top: 0px;
}
.arrow-down {
	position: absolute;
	right: 5px;
	top: 17px;
	width: 0; 
	height: 0; 
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #000000;
}
.btn-default, 
.btn-default:focus {
	background-color: #009FE4;
	color: #FFFFFF;
	padding: 10px 18px;
	text-transform: uppercase;
	margin: 0;
	outline: none;
	font-size: 14px;
	line-height: 18px;
	text-shadow: none;
	cursor: pointer;
	background-image: none;
	border: none;
	*border: 0;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	*zoom: 1;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.btn-default:hover,
.btn-default:focus:hover {
	text-decoration: none;
	color: #FFFFFF;
	outline: none;
	background-color: #A3C618;
	*background-color: #A3C618;
}
#lang {
	float: right !important;
}
#appversion-login{
	font-size: 10px;
	color: #CCCCCC;
	margin-left: auto;
	margin-right: 200px;
	float: right;
}
.alert {
	padding: 10px 20px 10px 10px;
	margin-bottom: 5px;
	font-size: 12px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.alert-error {
	color: #D40707;
	background-color: #FFDCDC;
	border-color: #D40707;
}
.alert-dismissible .close {
	top: -5px;
	right: -12px;
}
/* Affix and center */
@media (min-width: 768px) {
	/* Handle the widths */
	.login-container {
		width: 100%; /* Must be percentage or pixels for horizontal alignment */
	}
}

@media (min-width: 992px) {
	.login-container {
		width: 700px;
	}
}

/* end file: login.css */