*{
	margin:auto;
}

@font-face{
	font-family:font1;
	src:url(../font/Mulish-Medium.ttf);
}
@font-face{
	font-family:font2;
	src:url(../font/Marcellus-Regular.ttf);
}

body{
	font-family:font1;
	font-size:14px;
	color:#474747;
	background:#f0f0f0;
    background:radial-gradient(#f0f0f0,#99978a);
	background-size:cover;
}

#result{
	position:absolute;
	bottom:40px;
    left:60px;
	z-index:9;
    width:279px;
	font-size:13px;
	line-height:20px;
	text-align:center;
    color:#fff;
}
.resultFailed{
	width:100%;
	padding:8px 0 10px;
	background:#f72b27;
	border-radius:4px;
}
.resultSuccess{    
	width:100%;
	padding:8px 0 10px;
	background:#0fb37d;
	border-radius:4px;
}

/* LOGO */
.iconlogo{
	margin:20px 0 120px;
	width:250px;
	height:auto;
}


/* PAGE */
#page{
    width:100%;
	height:100vh;
    background:url("../images/background.png") no-repeat center;
}

#content{
	width:400px;
	background:rgba(255,255,255,.5);
	background-size:cover;
    border-radius:6px;
    box-shadow:inset 0 0 3px 1px #fff;
    animation:zoom .5s;
}
@keyframes zoom{
	from{
		transform:scale(0.9);
		opacity:0;
	}
	to{
		transform:scale(1);
	}
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  #content{
    -webkit-backdrop-filter:blur(40px);
    backdrop-filter:blur(40px);
  }
}
#contentHeader{
	margin:auto;
	width:180px;
	height:85px;
	border-radius:0 0 4px 4px;
}
.logoImage{
	margin:auto;
	width:120px;
	padding:30px 0;
}
.logo{
	width:100%;
	height:auto;
	text-align:center;
}

#loginbox{
	margin:auto;
	width:280px;
    height:350px;
}
.title{
	margin:40px 0 10px;
	font-family:font2;
	font-size:24px;
	font-weight:bold;
	text-align:center;
	color:#474747;
}
#titleApp{
    margin-bottom:40px;
    font-family:font2;
    font-size:16px;
    font-weight:bold;
    font-style: italic;
    text-align:center;
}
.green{
    color:#141f55;
}
.yellow{
    color:#ea572d;
}
#boxform{
	margin:auto;
	padding:5px 0;
}
.boxicon{
	float:left;
	width:20px;
	height:20px;
	padding:7px 10px 10px 7px;
	background:#f2d90d;
	border-radius:4px 0 0 4px;
}
.bottomlogin{
	margin-top:20px;
	width:250px;
}

.imglog{
	width:24px;
	height:24px;
}


div.loginSelect{
	width:240px;
	padding:0 0 1px;
	background:#e0e0e0;
	border:1px solid #e0e0e0;
	border-radius:0 2px 2px 0;
}
div.loginSelect:focus{
	border:1px solid #c0c0c0;
}


/*FORM LOGIN*/
.formLogin input{
	width:225px;
	padding:10px 8px;
	font-family:font1;
	background:rgba(255,255,255,.7);
	border:none;
	border-radius:0 4px 4px 0;
	outline:none;
    transition:all 0.3s Ease;
}
.formLogin input:focus{
	background:rgba(255,255,255,1);
}

#tombol{
	display:inline-block;
	margin-top:10px;
	width:279px;
	padding:12px 0;
	font-family:font2;
	font-size:13px;
	font-weight:bold;
	letter-spacing:1px;
	text-align:center;
	text-decoration	:none;
	color:#474747;
	background:#f2d90d;
	border:none;
	border-radius:4px;
	cursor:pointer;
}




/* MOBILE */
@media only screen and (max-width:1000px){
	#result{
		bottom:30px;
		left:30px;
	}
	#content{
		width:calc(100% - 20px);
		height:calc(100vh - 100px);
	}
	#left{
		float:none;
		width:100%;
	}
	#leftfill{
		padding:0 0 20px;
		height:300px;
		border-radius:0 0 3px 3px;
	}
	#leftfill h1{
		margin-bottom:20px;
		line-height:30px;
		font-size:18px;
	}
	.iconlogo{
		margin:0 0 50px;
	}
	#right{
		float:none;
		width:calc(100% - 40px);
		padding:0 20px;
		height:400px;
		border-radius:3px 3px 0 0;
	}
	#loginbox{
		padding-top:1px;
	}
}