@charset "utf-8";
/* CSS Document */

/*fondo pagina login*/
.home-bg{
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
}

.home-bg::before{
	content: "";
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 44, 143, 0.85);
	z-index: -1;
}
/*fondo pagina login*/