@font-face{
	font-family: 'TitilliumWeb-SemiBold';
	src: url(fonts/TitilliumWeb-SemiBold.ttf);
}

*{
	padding: 0;
	margin: 0;
	box-sizing: content-box;
	font-family: 'TitilliumWeb-SemiBold';
}

body{
	width: 100%;
	height: 100%;
	background-color: #ccc;
}

#contenedor{
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

#acceso{
	width: 100%;
	height: 400px;
	background-color: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

#camposAcceso{
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 40%;
	height: 100%;
	background-color: #a6ce38;
}

#formularioAcceso{
	display: block;
	width: 70%;
}

#formularioAcceso input[type=text],
#formularioAcceso input[type=password]
{
	display: block;
	width: 100%;
	height: 40px;
	margin: 20px auto 20px auto;
	background-color: transparent;
	text-align: center;
	font-size: 18px;
	border: 0;
	border-bottom: 1px solid #fff;
	color: #fff;
}

#formularioAcceso button
{
	display: flex;
  align-items: center;
  justify-content: center;
	width: 65%;
	height: 40px;
	margin: 20px auto 20px auto;
	color: #fff;
	background-color: #BED77A;
	text-align: center;
	font-size: 25px;
	border: 1px solid #fff;
	cursor: pointer;
}

#formularioAcceso a{
	display: block;
	margin: 10px auto 0 auto;
	width: 65%;
	text-align: center;
	text-decoration: none;
}

#formularioAcceso #respuesta{
	display: none;
	margin: 10px auto 0 auto;
	align-items: center;
	justify-content: center;
	width: 65%;
	height: 40px;
	border: 1px solid #fff;
}

#formularioAcceso #respuesta span{
	display: block;
}

.correcto{
	background-color: #00dd00;
	color: #fff;
}

.incorrecto{
	background-color: #dd0000;
	color: #fff;
}

#logo{
	display: flex;
	align-items: center;
	justify-content: center;
	float: left;
	width: 60%;
	height: 100%;
	background-color: #fff;
}

#logo img{
	display: block;
	height: 50%;
}

/*Ventanas Modales*/
.ventanaModal{
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 999;

}

.oc{
	top: -100%;
	transition: top .35s ease-in-out;
}

.mo{
	top: 0;
	transition: top .35s ease-in-out;
}

.ventanaModal .notificacionModal{
	width: 500px;
	height: 250px;
	border: 1px solid #ccc;
	background-color: #fff;
}

.ventanaModal .notificacionModal .cabeceraModal{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	border-bottom: 1px solid #ccc;
}

.ventanaModal .notificacionModal .cabeceraModal div:nth-child(1){
	display: flex;
	align-items: center;
	width: 450px;
	height: 100%;
}

.ventanaModal .notificacionModal .cabeceraModal div:nth-child(1) span{
	display: block;
	margin-left: 10px;
}

.ventanaModal .notificacionModal .cabeceraModal div:nth-child(2){
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 100%;
	border-left: 1px solid #ccc;
	cursor: pointer;
}

.ventanaModal .notificacionModal .cabeceraModal div:nth-child(2) span{
	display: block;
}

.ventanaModal .notificacionModal .contenidoModal{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 200px;
}

.ventanaModal .notificacionModal .contenidoModal p{
	display: block;
	width: 85%;
	text-align: justify;
	margin-bottom: 5px;
}

.ventanaModal .notificacionModal .contenidoModal input[type=text]{
	display: block;
	width: 300px;
	height: 30px;
	border: 1px solid #a8a8a8;
	background-color: #fff;
	color: #a8a8a8;
	text-align: center;
	margin-bottom: 5px;
}

.ventanaModal .notificacionModal .contenidoModal button{
	display: block;
	width: 200px;
	height: 30px;
	border: 1px solid #a8a8a8;
	border-radius: 5px;
	background-color: #CCCCCC;
	color: #fff;
	font-weight: bold;
	margin-bottom: 5px;
}
