*{
	margin:auto;
}

@font-face{
	font-family:font1;
	src:url(../font/OpenSans.ttf);
}
@font-face{
	font-family:font2;
	src:url(../font/JosefinSans-Regular.ttf);
}

body{
	font-family:font1;
	font-size:14px;
	color:#474747;
	background:#098740;
	background:linear-gradient(150deg, rgba(9,135,64,1) 10%,rgba(205,220,57,1) 90%);
	background-size:cover;
}

#result{
	position:absolute;
	bottom:60px;
	display:block;
	z-index:99;
	text-align:center;
	color:#fff;
}
.resultFailed{
	width:100%;
	padding:8px 13px 10px;
	font-size:13px;
	line-height:20px;
	background:#fe7146;
	border-radius:4px;
}

/* LOGO */
.iconlogo{
	margin:20px 0 120px;
	width:250px;
	height:auto;
}


/* PAGE */
#page{
	margin:auto;
	width:65%;
}

#content{
	margin-top:60px;
	width:100%;
	height:calc(100vh - 60px);
}


/* LEFT */
#left{
	position:relative;
	float:left;
	z-index:999;
	width:55%;
}
#leftfill{
	position:relative;
	left:0;
	z-index:999;
	height:400px;
	padding:50px 0 50px;
	text-align:center;
	color:#474747;
	background:url(../images/background.png) no-repeat #fff;
	background-size:100% auto;
	border-radius:6px 0 0 6px;
}
#leftfill h3{
	font-size:14px;
	font-family:font2;
	letter-spacing:1px;
	text-transform:uppercase;
}
#leftfill h1{
	margin-bottom:40px;
	line-height:50px;
	font-family:font2;
	font-size:24px;
	color:#999;
}
#leftfill i{
	font-size:14px;
	font-weight:bold;
}


/* RIGHT */
#right{
	position:relative;
	float:right;
	z-index:99;
	width:calc(45% - 100px);
	height:500px;
	padding:0 50px;
	background:#fff;
	border-radius:0 6px 6px 0;
}

#loginbox{
	margin:auto;
	padding-top:10px;
	width:280px;
}
.title{
	margin:50px 0 10px;
	font-family:font2;
	font-size:24px;
	font-weight:bold;
	text-align:center;
	color:#474747;
}
#boxform{
	margin:auto;
	padding:5px 0;
}
.boxicon{
	float:left;
	width:20px;
	height:20px;
	padding:7px 10px 10px 7px;
	background:#098740;
	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 4px 4px 0;
}
div.loginSelect:focus{
	border:1px solid #c0c0c0;
}


/*FORM LOGIN*/
.formLogin input{
	width:222px;
	padding:9px 9px 8px;
	font-family:font1;
	background:#e0e0e0;
	border:1px solid #e0e0e0;
	border-radius:0 4px 4px 0;
	outline: none;
    transition:all 0.3s Ease;
}
.formLogin input:focus{
	background:#fff;
	border:1px solid #c0c0c0;
}

#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:#fff;
	background:#098740;
	border:none;
	border-radius:4px;
	cursor:pointer;
}




/* MOBILE */
@media only screen and (max-width:1000px){
	#result{
		bottom:20px;
	}
	#page{
		width:calc(100% - 40px);
	}
	#content{
		margin-top:20px;
		height:calc(100vh - 40px);
	}
	#left{
		float:none;
		width:100%;
	}
	#leftfill{
		padding:0;
		height:290px;
		border-radius:6px 6px 0 0;
	}
	#leftfill h3{
		font-size:12px;
	}
	#leftfill h1{
		line-height:30px;
		font-size:16px;
	}
	#leftfill i{
		font-size:12px;
	}
	.iconlogo{
		margin:30px 0;
    	width:200px;
	}
	#right{
		float:none;
		width:calc(100% - 40px);
		padding:0 20px;
		height:360px;
		border-radius:0 0 6px 6px;
	}
	#loginbox{
		padding-top:1px;
	}	
	.title{
		margin:20px 0 10px;
		font-size:20px;
	}
	
}