/*===========================================================
 _   _ _____ ____ _____ _      _         ___  _    ___ _____ 
| \ | | ____/ ___|_   _(_) ___| | ___   ( _ )| |__|_ _|_   _|
|  \| |  _| \___ \ | | | |/ __| |/ _ \  / _ \| '_ \| |  | |  
| |\  | |___ ___) || | | | (__| |  __/ | (_) | |_) | |  | |  
|_| \_|_____|____/ |_| |_|\___|_|\___|  \___/|_.__/___| |_|  
=============================================================
*/

* {
	outline: none;
}

a {
	color: #00A5F0;
	text-decoration: none;
	-webkit-transition: color .2s linear;
	-moz-transition: color .2s linear;
}

a:hover {
	color: #24BBFF;
}

::selection {
	background: #E92C6C;
	color: white;
	text-shadow: 0 1px rgba(0, 0, 0, .2);
}

::-moz-selection {
	background: #E92C6C;
	color: white;
	text-shadow: 0 1px rgba(0, 0, 0, .2);
}

::-o-selection {
	background: #E92C6C;
	color: white;
	text-shadow: 0 1px rgba(0, 0, 0, .2);
}

body#login-page {
	min-width: 600px;
}

body {
	margin: 0;
	background-color: #DDD;
	color: #222;
	font: 11px "Helvetica Neue",Helvetica,Arial,sans-serif;
	min-width: 1080px;
}

.login-wrap .mensaje {
	text-shadow: 0 1px 0 #EEE;
	color: #222;
	text-align: center;
	width: 600px;
	height: 600px;
	background-color:#008bd4;
	padding: 15px 0 0;
	margin: 0 auto;
	margin-top: 110px;
}

.login-wrap h2 {
	font-size: 28px;
	margin: 0;
}

form#form-logeo {
	width: 280px;
	
	margin: 15px auto;
	/*background: url("../imagenes/separador.png") no-repeat top center;*/
	padding-top: 30px;
}

form.generic .field {
	margin-bottom: 10px;
}

form.generic label {
	display: block;
	font-weight: bold;
	font-size: 12px;
	color: #212121;
	text-shadow: 0 1px 0 #EEE;
	margin-bottom: 8px;
}

form#form-logeo input.text {
	width: 258px;
}

form.generic input.text {
	font-size: 14px;
	border-color: #DDD;
	-webkit-transition: border-color .2s linear;
	-moz-transition: border-color .2s linear;
	border: 1px solid #BBB;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-shadow: 0 1px 0 #eee;
	-webkit-box-shadow: 0 1px 0 #eee;
	-moz-box-shadow: 0 1px 0 #eee;
	display: block;
	width: auto;
	border-image: initial;
}

form input.text, form input.search, .contact-wrapper textarea {
	padding: 10px;
	margin: 0;
	font: 14px "HelveticaNeue", Helvetica, Arial, sans-serif;
}

form.generic label span {
	color: #878787;
	font-weight: normal;
}

form.generic .btnlogeo {
	overflow: hidden;
}

form.generic #login-submit {
	height: 36px;
	width: 280px;
	padding: 0 0 1px;
}

form.generic a.button, form.generic #login-submit {
	cursor: pointer;
	display: block;
	line-height: 34px;
	padding: 0 20px;
	font-size: 12px;
	font-weight: bold;
	font-family: inherit;
	background-color: #00A5F0;
	color: white;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .4) inset, 0 1px #fff;
	-moz-box-shadow: 0 0 0 1px rgba(255, 255, 255, .4) inset, 0 1px #fff;
	-webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, .4) inset, 0 1px #fff;
	text-shadow: 0 -1px rgba(0, 0, 0, .2);
	text-align: center;
	border-image: initial;
}