*{
	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(160deg, rgba(9,135,64,1) 20%,rgba(205,220,57,1) 100%);
	background-size:cover;
}

#result{
	position:absolute;
	bottom:36px;
	z-index:999;
    width:280px;
	font-size:13px;
	line-height:20px;
	text-align:center;
    color:#fff;
}
.resultFailed{
	width:100%;
	padding:8px 0 10px;
	background:#fe7146;
	border-radius:4px;
}
.resultSuccess{    
	width:100%;
	padding:8px 0 10px;
	background:#10b761;
	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;
    background-size:contain;
}

#content{
	width:400px;
	background:rgba(255,255,255,.3);
	background-size:cover;
    border-radius:6px;
    box-shadow:inset 0 0 3px 1px #ccc;
    animation:zoom .5s;
}
@keyframes zoom{
	from{
		transform:scale(0.8);
	}
	to{
		transform:scale(1);
	}
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  #content{
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
}
#content.zoomOut{
    animation:zoomOut .5s;
}
@keyframes zoomOut{
	from{
		transform:scale(1);
	}
	to{
		transform:scale(30);
	}
}
#contentHeader{
	margin:auto;
	width:150px;
	height:80px;
	background:rgba(255,255,255,.5);
	border-radius:0 0 4px 4px;
}
.logoImage{
	margin:auto;
	width:120px;
	padding:10px 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:#f0f0f0;
}
#titleApp{
    margin-bottom:40px;
    font-family:font2;
    font-size:16px;
    font-weight:bold;
    font-style: italic;
    text-align:center;
}
.green{
    color:#098740;
}
.yellow{
    color:#cddc39;;
}
#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:10px;
	width:100%;
}

.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:10px 9px 9px;
	font-family:font1;
	background:rgba(255,255,255,.3);
	border:none;
	border-radius:4px;
	outline:none;
    transition:all 0.3s Ease;
	-webkit-transition:all 0.3s Ease;
}
.formLogin input:focus{
	background:rgba(255,255,255,.5);
}

#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:#f0f0f0;
	background:#098740;
	border:none;
	border-radius:4px;
	cursor:pointer;
}