*{
	margin:auto;
}

@font-face{
	font-family:font1;
	src:url(../font/Alata-Regular.ttf);
}
@font-face{
	font-family:font2;
	src:url("../font/Heebo-Medium.ttf");
}

body{
	font-family:font1;
	font-size:14px;
	color:#474747;
	background:#69c724;
	//background:linear-gradient(to right, #02451f, #3a770d);
	background:linear-gradient(135deg, #000, #999 75%);

}

#page{
	height:100vh;
	background:url("../images/background-login.png") no-repeat center;
	background-size:cover;
}

#loading{
	position:relative;
	bottom:-10px;
	left:155px;
}
#result{
	width:280px;
	font-size:13px;
	text-align:center;
	color:#fff;
}
.resultSuccess{
	padding:10px 20px 12px;
	background:#037f39;
	border-radius:4px;
	word-break:break-all;
}
.resultFailed{
	padding:10px 20px 12px;
	background:#e74650;
	border-radius:4px;
	word-break:break-all;
}


/* LOADING */
@keyframes twoBall-o {
    0%    { opacity: 1; transform: translate(0 0) }
   49.99% { opacity: 1; transform: translate(48px,0) }
   50%    { opacity: 0; transform: translate(48px,0) }
  100%    { opacity: 0; transform: translate(0,0) }
}
@keyframes twoBall {
    0% { transform: translate(0,0) }
   50% { transform: translate(48px,0) }
  100% { transform: translate(0,0) }
}
.twoBall div {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 0;
  left: 0;
}
.twoBall div:nth-child(1) {
  background: #ffc101;
  animation: twoBall 1s linear infinite;
  animation-delay: -0.5s;
}
.twoBall div:nth-child(2) {
  background: #69c724;
  animation: twoBall 1s linear infinite;
  animation-delay: 0s;
}
.twoBall div:nth-child(3) {
  background: #ffc101;
  animation: twoBall-o 1s linear infinite;
  animation-delay: -0.5s;
}
.twoBall {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}
.twoBall div { box-sizing: content-box; }


/* LOGO */
#content{
	position:relative;
	width:380px;
	padding-bottom:20px;
	background:rgba(255,255,255,1);
	border-radius:6px;
	box-shadow:0 0 10px 0 #474747;
	overflow:hidden;
}
/*
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  #content {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}
*/
#contentHeader{
	position:relative;
	margin:auto;
	width:100px;
	height:100px;
	background:#f0f0f0;
	border-radius:0 0 6px 6px;
}
.logoImage{
	margin:auto;
	width:60px;
	padding:20px 0;
}
.logo{
	width:100%;
	height:auto;
	text-align:center;
}

#contentMenu{
	margin:auto;
	height:290px;
	padding:20px 0;
	background:#fff;
}
#contentMenu h1{
	position:relative;
	font-family:font1;
	font-size:24px;
	letter-spacing:1px;
	text-align:center;
	color:#474747;
}

#loginbox{
	position:relative;
	margin:auto;
	padding-top:20px;
	width:280px;
}
#boxform{
	margin:auto;
	padding:5px 0;
}
.boxicon{
	float:left;
	width:22px;
	height:22px;
	padding:8px 8px 9px 8px;
	background:#69c724;
	border-radius:4px 0 0 4px;
}
.bottomlogin{
	margin-top:15px;
}

.imglog{
	width:24px;
	height:24px;
}

/* FOOTER */
#footer{
    position:absolute;
    bottom:0;
	width:100%;
    background:#f0f0f0;
    border-top:1px solid #d0d0d0;
}
#footerMenu{
	margin:0 50px;
	padding:2px 0 4px;
    font-size:15px;
    line-height:36px;
    color:#747474;
}
.icontop{
	float:left;
	margin:6px 6px 0 0;
	width:24px;
	height:24px;
}


/* FORM LOGIN */
.formLogin input{
	width:222px;
	padding:8px 8px 9px;
	font-family:font2;
	font-size:14px;
	color:#747474;
	background:#f0f0f0;
	border:1px solid #f0f0f0;
	border-radius:0 4px 4px 0;
	outline:none;
    transition:all 0.3s Ease;
}
.formLogin input::placeholder{
	color:#474747;
}
.formLogin input:focus{
	background:#fff;
	border:1px solid #d0d0d0;
}

#tombol{
	display			: inline-block;
	margin-top 		: 10px;
	width			: 279px;
	padding 		: 12px 0;
	height  		: 42px;
	font-family     : font1;
	font-size		: 13px;
	font-weight     : bold;
	letter-spacing 	: 1px;
	text-align		: center;
	text-decoration	: none;
	color			: #fff;
	background		: #69c724;
	border			: none;
	border-radius 	: 4px;
	cursor			: pointer;
    transition:all 0.1s Ease;
}
#tombol:active{
	padding 		: 13px 0;
	font-size		: 11px;
}



/* MOBILE */
@media only screen and (max-width:1000px){
	#content{
		margin:0 10px;
		width:auto;
	}
	#footerMenu{
		margin:0 30px;
	}
}