@font-face{
	font-family: 'Oswald';
	src: url("../fuentes/Oswald/Oswald-Regular.ttf");
	font-weight: normal;
}

@font-face{
	font-family: 'Oswald';
	src: url("../fuentes/Oswald/Oswald-SemiBold.ttf");
	font-weight: bold;
}

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Oswald';
}

html, body{
	background: #eee;
	font-size: 14px;
	color: #000;
	width: 100%;
	height: 100%;
}

#container{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#login-frame{
	display: flex;
	align-items: center;
	justify-content: center;
	width:100%;
	height: 400px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}

#login
{	
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width:40%;
	height: 100%;
	background-color: #9a192c;
	border:0;
	float: left;
}

#login p{
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	color: #fff;
}

#login label{
	text-align: center;
	color: #fff;
	font-size: 16px;
}

#login input{
	display: block;
	width: 300px;
	height: 40px;
	color: #000;
	border-radius: 5px;
	border: 0;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
	font-size: 16px;
	text-align: center;
	margin: 0 auto 15px auto;
}

#login button{	
	display: block;
	width: 300px;
	height: 40px;
	background-color: #590E1A;
	border: 0;
	border-radius: 5px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
	color: #fff;
	font-size: 16px;
	margin: 0 auto 15px auto;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

#login button:hover{
	background-color: #801424;
	transition: all 0.2s ease-in-out;
}

#loginResponse{
	width:300px;
	border:1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
	color: #fff;
	margin: 0 auto 0 auto;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	padding: 7px;
}

.hide{
	display: none;
}

.show{
	display: block;
}

.ok{
	background-color: #4EA644;
}

.error{
	background-color: #CC3C0C;
}

#logo{
	width: 60%;
	height: 100%;
	background-color: white;
	background-image: url("../imagenes/logos/logo.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40%;
	float: left;
}
