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

body {
	background: #1a1a1a;
	
	color: #fff;
	font-family: Trebuchet MS, Arial;
	font-size: 13px;
	line-height: 1.42;
	text-align: center;
}

strong {
	color: #fff;
}

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

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

/**
* Area de acceso
 */
#area-de-acceso{
	width: 400px;
	background: #5d5d5d ;
    background: -webkit-linear-gradient(#7d7d7d, #4f4f4f); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#7d7d7d, #4f4f4f); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#7d7d7d, #4f4f4f); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#7d7d7d, #4f4f4f); 
	border-radius: 10px;
    display: table;
    left: 50%;
    margin: 0 auto;
    padding: 30px 20px 15px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

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

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

#area-de-acceso #mensaje-bienvenida {
	color: #fff;
	line-height: 20px;
	text-align: center;
}

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

#area-de-acceso form .linea-form label{
	float: left;
	width: 100px;
	font-weight:bold;
	text-align: left;
}

#area-de-acceso form .linea-form input{
	background: #ffffff;
	 border: 1px solid #fff;
	padding: 2px 3px;
	width: 240px;
	font-size: 12px;
	color: #777777;
}
p {
    margin: 0 0 19px;
    width: 100%;
}
#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: #0ca4aa;
	color: #FFF;
	font-weight: bold;
	padding: 5px 25px 7px 25px;
	cursor: pointer;
	float: right;
	margin-top: 15px;
}

#area-de-acceso form button[type="submit"]:hover{
	background: #9afcff;
	color:#00383b;
}

#mensaje-de-error {
	font-size: 12px;
	color: #f23030;
	float:left;
	margin:0 0 0 110px;
	font-weight: bold;
}

/**
* Medias (Mantener siempre en la parte inferior de la hoja de estilos)
 */
@media (max-width: 360px){
	#area-de-acceso{
		max-width: 300px;
	}

	#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{
		margin-left: 0;
	}
}
/**
* FIN Medias (No escribir estilos por debajo de esta línea)
 */