@import url('https://fonts.googleapis.com/css2?family=Ropa+Sans&family=Rubik:wght@300;400;500;600;700&display=swap');

main{
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background: rgba(57,86,222,0.07);
	background-image: url("../images/bg-pattern2.png");
	background-size: cover;
	background-position: center center;
	font-family: 'Ropa Sans', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow-x: hidden;
}
main.clear::before{
	display: none;
}
main::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: -15%;
	width: 70%;
	height: 100%;
	background-image: url('../images/logo_presisi.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50%;
}
main img.main-logo{
	width: 100px;
}
main h1.hero-text{
	position: relative;
	font-family: 'Rubik', sans-serif;
	font-size: 42px;
    text-shadow: 1px 3px 5px rgb(0 0 0 / 15%);
    color: #343a40;
    font-weight: 500;
    margin-bottom: 0;
    z-index: 2;
}
main h2.hero-text,h3.hero-text{
	position: relative;
	font-size: 26px;
    color: #343a40;
    font-weight: 500;
    margin-bottom: 0;
    z-index: 2;
}
main .btn-login{
	position: relative;
	z-index: 4;
	border: none;
	background: linear-gradient(to right, #3956de 0%, #657be5 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgb(57 86 222 / 15%);
    border-radius: 3px;
    padding: 5px 30px;
    margin-top: 15px;
    transition: .5s ease all;
}
main .btn-login::before{
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #00923f 0%, #a8a114 100%);
	border: none;
    color: #fff;
    box-shadow: 0 4px 20px rgb(57 86 222 / 15%);
    border-radius: 3px;
    transition: .5s ease all;
}
main .btn-login:hover{
	color: #fff;
	transition: .5s ease all;
}
main .btn-login:hover::before{
	opacity: 0;
	transition: .5s ease all;
}
main ul.list-h{
	position: relative;
	z-index: 2;
	display: flex;
	margin-top: 25px;
	padding: 0;
	list-style: none;
	margin-left: -15px;
	margin-right: -15px;
}
main ul.list-h li a{
	padding: 0 15px;
	text-decoration: none;
}
main h1.heading-page{
	position: relative;
	font-size: 32px;
    color: #343a40;
    font-weight: 700;
    margin-bottom: 10px;
    z-index: 2;
}
@media (min-width: 768px) and (max-width: 991.98px) {
	main::before{
		opacity: .5;
	}
}
@media screen and (max-width: 767.98px) {
	main::before{
		width: 80%;
		height: 50%;
	}
	main h2.hero-text,h3.hero-text{
		font-size: 24px;
	}
}
@media screen and (max-width: 575.98px) {
	main .container{
		text-align: center;
	}
	main h1.hero-text{
		font-size: 42px;
		text-align: center;
	}
	main h2.hero-text,h3.hero-text{
		font-size: 18px;
		text-align: center;
	}
	main ul.list-h{
		justify-content: center;
	}
	main ul.list-h li a{
		font-size: 12px;
	}
	main::before{
		opacity: .1;
		width: 100%;
		height: 100%;
		right: 0;
		bottom: 0;
	}
}