/**
* General
 */
*{
	box-sizing: border-box;
}

body {
	background: #262b26;
	color: #000;
	font-family: "Roboto Condensed", Arial;
	font-size: 13px;
	line-height: 1.42;
	text-align: center;
}

strong {
	color: #000;
}

a {
	color: #a12d19;
	text-decoration: underline;
	font-weight:bold;
}

a:hover {
	color: #f9624b;
	text-decoration: none;
}

/**
* Area de acceso
 */
#area-de-acceso{
	width: 480px;
	background: #e3e5e3;
	display: table;
	padding: 30px 20px 15px 20px;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#area-de-acceso #logo{
	width: 90%;
	display: table;
	margin: 0 auto 40px auto;
	text-align: center;
}

#area-de-acceso #logo img{
	max-width: 100%;
	height: auto;
	display: inline-block;
}

#area-de-acceso #mensaje-bienvenida {
	color: #000;
	font-size: 20px;
	line-height: 30px;
	font-weight: 200;
}

/**
* Form acceso
*/
#area-de-acceso form{
	position: relative;
}

#area-de-acceso form .linea-form{
	margin: 5px 0;
	display: block;
}

#area-de-acceso form .linea-form label{
	float: left;
	width: 130px;
	font-weight:bold;
	text-align: left;
	font-size: 18px;
line-height: 38px;
}

#area-de-acceso form .linea-form label i{
	margin-right: 5px;
	min-width: 17px;
}

#area-de-acceso form .linea-form input{
	background: #ffffff;
	border: 1px solid #cfd3cf;
	border-radius: 4px;
	padding: 0 12px;
	height: 38px;
	line-height: 38px;
	width: 310px;
	font-size: 18px;
	color: #000;
}

#area-de-acceso form .linea-form input:focus { border: 1px solid #a0a0a0; }

#area-de-acceso form button[type="submit"] {
	width: auto;
	border: 0;
	border-radius: 5px;
	background: #d7031f;
	color: #FFF;
	font-weight: bold;
	padding: 10px 30px;
	cursor: pointer;
	float: right;
	margin-top: 15px;
	font-size: 20px;
	text-transform: uppercase;
}

#area-de-acceso form button[type="submit"]:hover{
	background: #35a32b;
}

#mensaje-de-error {
	font-size: 18px;
	line-height: 18px;
	color: #f23030;
	float:left;
	font-weight: bold;
	position: absolute;
	top: -18px;
	right: 0;
}

#mensaje-de-error p{
	margin-bottom: 0;
}

.password-reminder{
	float: left;
	width: auto;
	margin-top: 15px;
	font-size: 16px;
	line-height: 16px;
}

.password-reminder a{
	color: #35a32b;
	font-weight: normal;
	text-decoration: none;
}

.password-reminder a:hover{
	color: #d7031f;
}

label[for="remember"]{
	float: left;
	margin-top: 10px;
	font-size: 16px;
}

label[for="remember"] input{
	position: relative;
	top: 1px;
	margin-right: 5px;
}

.contain-password-reminder{
	position: fixed;
	background: rgba(0,0,0,.8);
	z-index: 10;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: none;
}

.info-password-reminder i.close{
	position: absolute;
	top: 10px;
	right: 10px;
	color: #FFF;
	font-size: 30px;
	line-height: 30px;
	opacity: 1;
	z-index: 20;
}

.info-password-reminder i.close:hover{
	opacity: .8;
	text-shadow: -1px -1px 0 rgba(0,0,0,.5);
}

.info-password-reminder p{
	position: absolute;
	padding: 25px;
	width: 40%;
	background: #FFF;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 20;
	font-size: 20px;
}

/**
* Medias (Mantener siempre en la parte inferior de la hoja de estilos)
 */
@media (max-width: 490px){
	#area-de-acceso{
		max-width: 90%;
		position: relative;
		transform: none;
		top: 10px;
		left: 0;
		right: 0;
		display: table;
		margin: 0 auto;
	}

	#area-de-acceso #logo{
		margin-bottom: 20px;
	}

	#area-de-acceso #mensaje-bienvenida{
		font-size: 16px;
		line-height: 21px;
	}

	#area-de-acceso form .linea-form label{
		float: left;
		width: 100%;
		margin-bottom: 5px;
	}

	#area-de-acceso form .linea-form input{
		width: 100%;
	}

	#mensaje-de-error{
		top: 15px;
	}
}
/**
* FIN Medias (No escribir estilos por debajo de esta línea)
 */