@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-size:'Roboto', sans-serif;
	text-decoration:none;
}
body{
	background:linear-gradient(90deg,#6599FF,#0040F0);
	padding:20px;
}
.ctn_all{
	width:100%;
	max-width:1000px;
	margin:auto;
	margin-top:100px;
	display:flex;
	border-radius:20px;
	overflow:hidden;
}
.ctn_form{
	width:80%;
	padding:40px;
	background:#f7f7f7;
}
.logo_sw{
	width:120px;
	display:block;
	margin:auto;
}
.title{
	text-align:center;
	margin-top:20px;
	font-weight:300;
	color:#7a7a7a;
}
label{
	display:block;
	margin-top:30px;
	font-size:20px;
	font-weight:300;
	color:#7a7a7a;
}
input[type="text"],
select,
input[type="password"]{
	width:100%;
	height:30px;
	background:rgba(0,0,0,0);
	border:0px;
	outline:0px;
	border-bottom:1px solid rgba(0,0,0,0.12);
	color:#e30f87;
	font-size:16px;
}
input[type="submit"]{
	width:100%;
	height:50px;
	margin-top:60px;
	color:white;
	border:0px;
	background:linear-gradient(90deg,#6599FF,#0040F0);
	font-weight:300;
	cursor:pointer;
	font-size:18px;
}
input[type="submit"]:hover{
	background:linear-gradient(90deg,#0040F0,#6599FF);
}
.text-footer{
	display:block;
	margin-top:100px;
	text-align:center;
	color:#7a7a7a;
	font-weight:300;
}
.text-footer a{
	color:#029EE1;
	font-weight:300;
}
.ctn_noti{
	width:100%;
	background-image:url(../../image/empresarial.jpg);
	background-position:center;
	background-size:cover;
	padding:40px;
	position:relative;
	}
.capa{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background:linear-gradient(90deg,#0040F0,#6599FF);
	opacity:0.4;
	}
.title_noti{
	position:relative;
	top:80px;
	color:white;
	font-weight:300;
	font-size:40px;
}
.detalle_noti{
	position:relative;
	top:110px;
	color:white;
	font-size:18px;
	font-weight:200;
}
.cnt_empresa{
	height:200px;
	width:200px;
	position:absolute;
	top:150px;
	left:150px;
	background:#FFF;
	margin:0 center;
	z-index:100;
	display:none;
	}
/* responsive*/
@media screen and (max-width:800px){
	.ctn_noti{
		display:none;
	}
	.ctn_form{
		margin:auto;
		width:100%;
		background:white;
		}
}
