/* General Styles */
body {
	font-family: 'Roboto', sans-serif;
	background-color: #f4f4f4;
	margin: 0;
	padding: 0;
}

/* Login Section */
.login {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('../images/bg1.jpg');
	/* Ganti dengan URL gambar latar belakang */
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

/* Overlay effect for text readability */
.login::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	/* Grayscale overlay for readability */
	z-index: 1;
}

.card {
	border-radius: 20px;
	border: none;
	position: relative;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.5);
}

.card-body {
	padding: 30px;
}

/* Form Inputs */
.form-control {
	border-radius: 8px;
	border: 1px solid #ddd;
	padding: 10px;
	margin-bottom: 20px;
}

/* Button Style */
button.btn {
	background: #1e2187;
	border-radius: 8px;
	border: none;
	padding: 10px;
	color: white;
	font-size: 16px;
	transition: all 0.3s ease;
}

button.btn:hover {
	background: #fcf000;
}

/* Links */
a {
	color: #8dc342;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.fixed-img {
	width: 300px !important;
	position: fixed;
	bottom: 10px;
	/* Jarak dari bawah */
	left: 10px;
	/* Jarak dari kiri */
	width: 100px;
	/* Atur ukuran gambar sesuai keinginan */
	height: auto;
	/* Sesuaikan tinggi agar proporsional */
	z-index: 9999;
	/* Pastikan gambar muncul di atas elemen lainnya */
}


/* Responsive Design */
@media (max-width: 768px) {
	.login {
		padding: 50px 0;
		background-position: center;
	}

	.card {
		width: 100%;
	}

	.fixed-img {
		width: 150px !important;
		position: fixed;
		left: 30%;
	}
}

@media (min-width: 601px) and (max-width: 1024px) {
	.login {
		padding: 50px 0;
		background-position: center;
	}
}