*{margin:0;padding:0;box-sizing:border-box}

body,html{height:100%;font-family:SourceSansPro-Regular,sans-serif}

#contenedor_fondo{
	width:100%;
	min-height:100%;
	
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	position:relative;
	z-index:1;
	//background-image: url('../../img/sistema/auth/finicio.jpg');
}

.contenedor_fondo_ini::before
{
	content:"";
	display:block;
	position:absolute;
	z-index:-1;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(93,84,240,.5);
	background:-webkit-linear-gradient(left,rgba(0,0,0,0.5),rgba(0,0,0,0.5));
	background:-o-linear-gradient(left,rgba(0,0,0,0.5),rgba(0,0,0,0.5));
	background:-moz-linear-gradient(left,rgba(0,0,0,0.5),rgba(0,0,0,0.5));
	background:linear-gradient(left,rgba(0,0,0,0.5),rgba(0,0,0,0.5));
	pointer-events:none
}

.contenedor_fondo_adm::before
{
	content:"";
	display:block;
	position:absolute;
	z-index:-1;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(93,84,240,.5);
	background:-webkit-linear-gradient(left,rgba(56,56,111,0.5),rgba(19,144,192,0.5));
	background:-o-linear-gradient(left,rgba(56,56,111,0.5),rgba(19,144,192,0.5));
	background:-moz-linear-gradient(left,rgba(56,56,111,0.5),rgba(19,144,192,0.5));
	background:linear-gradient(left,rgba(56,56,111,0.5),rgba(19,144,192,0.5));
	pointer-events:none
}

.contenedor_fondo_doc::before
{
	content:"";
	display:block;
	position:absolute;
	z-index:-1;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(93,84,240,.5);
	background:-webkit-linear-gradient(left,rgba(49,99,49,0.5),rgba(80,201,80,0.5));
	background:-o-linear-gradient(left,rgba(49,99,49,0.5),rgba(80,201,80,0.5));
	background:-moz-linear-gradient(left,rgba(49,99,49,0.5),rgba(80,201,80,0.5));
	background:linear-gradient(left,rgba(49,99,49,0.5),rgba(80,201,80,0.5));
	pointer-events:none
}

.contenedor_fondo_est::before
{
	content:"";
	display:block;
	position:absolute;
	z-index:-1;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(93,84,240,.5);
	background:-webkit-linear-gradient(left,rgba(168,149,40,0.5),rgba(250,224,23,0.5));
	background:-o-linear-gradient(left,rgba(168,149,40,0.5),rgba(250,224,23,0.5));
	background:-moz-linear-gradient(left,rgba(168,149,40,0.5),rgba(250,224,23,0.5));
	background:linear-gradient(left,rgba(168,149,40,0.5),rgba(250,224,23,0.5));
	pointer-events:none
}

.contenedor_fondo_pad::before
{
	content:"";
	display:block;
	position:absolute;
	z-index:-1;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(93,84,240,.5);
	background:-webkit-linear-gradient(left,rgba(99,49,57,0.5),rgba(209,77,77,0.5));
	background:-o-linear-gradient(left,rgba(99,49,57,0.5),rgba(209,77,77,0.5));
	background:-moz-linear-gradient(left,rgba(99,49,57,0.5),rgba(209,77,77,0.5));
	background:linear-gradient(left,rgba(99,49,57,0.5),rgba(209,77,77,0.5));
	pointer-events:none
}

#contenedor_formulario{
	max-width:375px;
	background:#fff;
	border-radius:10px;
	border: 1px solid lightgray;
	overflow:hidden;
	box-shadow:0 0 15px #999;
	padding-left: 25px; 
	padding-right: 25px; 
	padding-top: 30px; 
	padding-bottom: 30px; 
}

#titulo_usuario {
	font-family: 'Roboto'; 
	font-size: 20px; 
	font-weight: 600; 
	text-transform: uppercase; 
	text-align: center
}

.contenedor_campo_texto {
	border-radius: 10px; box-shadow: 0px 3px 20px #ddd
}

.campo_texto {
	font-size: 16px;
	font-family: 'Roboto';
	font-weight: 600;
	line-height: 1.2;
	display: block;
	width: 100%;
	height: 62px;
	background: transparent;
	padding: 0 20px 0 23px; outline: none;
	border: 1px solid #ccc;
	border-radius: 10px;
}

.contenedor_boton_ingreso {
	width:100%;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	justify-content:center
}

#boton_ingreso
{
	outline: none !important;
	border: none;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:0 20px;
	min-width:160px;
	height:50px;
	border-radius:10px;
	font-family: 'Roboto';
	font-weight: 600;
	font-size:14px;
	color:#fff;
	line-height:1.2;
	text-transform:uppercase;
	-webkit-transition:all .4s;
	-o-transition:all .4s;
	-moz-transition:all .4s;
	transition:all .4s;
}

.botones_usuarios:hover {
	cursor: pointer;
}

