body {
	margin: 0;
	padding: 0;
	background-image: url(../assets/dist/img/kucing.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: sans-serif;
}
.login {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.5);
	padding: 20px;
	width: 300px;
	box-shadow: 0 0 10px 5px rgb(179, 173, 173);
}
/* .avatar{
    font-size: 50px;
    background: #bdc3c7;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    color: #2c3e50;
} */
.login h3 {
	text-align: center;
	color: black;
	padding-top: 10px;
	letter-spacing: 10px;
}
.box-login {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	border-bottom: 2px solid black;
	padding: 8px 0;
}
.box-login i {
	font-size: 20px;
	color: black;
}
.box-login input {
	width: 100%;
	padding: 0 10px;
	background: none;
	border: none;
	outline: none;
	color: black;
	font-size: 18px;
}
.box-login input::placeholder {
	color: black;
}
.btn-login {
	width: 100%;
	background: none;
	padding: 15px;
	border: 1px solid black;
	font-size: 18px;
	letter-spacing: 5px;
	color: black;
	cursor: pointer;
	transition: 0.3s;
}
.btn-login:hover {
	background: rgba(0, 0, 0, 0.8);
}
.bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}
.bottom a {
	color: black;
	font-size: 14px;
	text-decoration: none;
}
.bottom a:hover {
	text-decoration: underline;
}
