html {
	height: 100%;
}
body {
	font-family: sans-serif;
	color: #5a6966;
	background: url('/img/login-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 95%;
}

a:hover {
	text-decoration: underline;
}

a:focus {
  text-decoration: underline;
  border: 1px solid #5a6966;
}

/*Pembungkus Login*/
.kotak-login {
	border-radius: .8%;
	width: 57%;
	height: 55%;
	margin: auto;
	background-color: rgba(255, 255, 255, .96);
	text-align: center;
	padding: 2%;
	box-shadow: 2px 2px 7px rgba(0, 0, 0, .1);
}
.container-login {
	position: relative;
	padding-top: 7%;
	padding-bottom: 9%;
}
.login-page-position {
	position: fixed;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background: #3bc1c9;
	box-shadow: 3px 2px 5px rgba(0,0,0,.4);
	color: #fff;
	padding: 20px;
}
/*Sisi Kiri*/
.logo {
	height: 100%;
}
.logo img {
	width: 90%;
}

/*Sisi Kanan*/
.login {
	height: 100%;
	right: 0;
	box-shadow: -8px 0 20px -20px black;
	vertical-align: middle;
}
.login-form {
	margin-top: 5%;
  overflow: hidden;
}
.login-form label{
	display: block;
	margin-bottom: 1.3%;
}
.login-form input, .login-button {
	width: 90%;
	height: 30px;
}
.login-form input {
	text-align: center;
	display: block;
	margin: auto;
	border: 1px solid #c5d6d2;
	border-radius: 2px;
	background: none;
	color: #5a6966;
	transition: .2s;
	outline: none;
}
.login-form label[for=password]{
	margin-top: 4%;
}
.forgot-password, .register {
	margin-top: 2%;
	display: block;
	color: inherit;
	font-size: 14px;
}
.login-button {
	margin-top: 4%;
	color: #fff;
	background: #3bc1c9;
	border: 1px solid #3bc1c9;
	border-radius: 2px;
	font-size: 1.2em;
	font-weight: 100;
	cursor: pointer;
	transition: 0.3s;
}
.login-button:hover {
	background: none;
	color: inherit;
}
.login-form i{
	position: absolute;
}

.svg-eye {
	position: absolute;
	cursor: pointer;
	fill: #000;
	top: 64%;
	right: 7%;
}