html {
	height: 100%;
}

body {
	background-image: radial-gradient(circle farthest-corner at 10% 20%, #9ED2C6 0%, #54BAB9 82.8%);
	/* background-image: url('/public/assets/image/bg_login.jpg'); */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.box {
	width: 100%;
	margin-top: 70px;
}

.wraper-img {
	height: 100%;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
}

.text-dinas {
	color: #ffffff;
	font-weight: 600;
	font-size: 12pt;
	position: absolute;
	padding: 20px 20px 0 20px;
	z-index: 120;
}

.btn-login {
	background-color: #0D6CA5;
	width: 150px;
	color: #fff;
	border-radius: 2px
}

.btn-login:hover {
	background-color: #ffffff;
	color: #0D6CA5;
	border: solid 1px #0D6CA5;
	cursor: pointer
}


@media screen and (max-width: 991px) {
	.box {
		width: 85%;
		margin-top: 130px;
	}
}

a.halaman-depan:link,
a.halaman-depan:visited {
	color: #5fb8df;
	font-size: 12pt;
	font-weight: 500;
}

a.halaman-depan:hover {
	color: #04aefd;
	text-decoration: none;
}

.judul-login {
	font-size: 18pt;
	font-weight: 700;
	margin-bottom: 10px;
}



/* CSS VALIDASI PASSWORD */
.box-strength{
  background-color: #e8e8e8;
  padding: 10px;
}
.title-strength{
  font-size: 16pt;
  font-weight: bold;
  color: #333;
}
.box-parameter{
  margin-left: 10px;
}
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -4px;
  content: "\2713";
  font-weight: bold;
}

.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -4px;
  content: "\2718";
}