body {
	font-family: 'Poppins', sans-serif;
	background: #1c1e22;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.login-card {
	border: none;
	border-radius: 1rem;
	box-shadow: 0 0 25px rgba(0, 123, 255, 0.4),
		0 4px 20px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	background-color: #ffffff;
	display: flex;
	align-items: stretch;
	flex-wrap: nowrap;
	max-height: 550px;
}

.login-card .card-body {
	padding: 2rem;
	color: #212529;
	overflow-y: auto;
}

.login-card .card-title {
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.login-card .card-body p.text-muted {
	color: #6c757d !important;
}

.form-control,
.form-select {
	border-radius: 0.75rem;
	padding: 1rem;
	min-height: 50px;
	background-color: #f8f9fa;
	border: 1px solid #dee2e6;
}

.form-floating>label {
	padding: 1rem;
}

.btn-primary {
	background-color: #007bff;
	border: none;
	border-radius: 0.75rem;
	padding: 0.8rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
}

.btn-grad {
	background-image: linear-gradient(to right, #004FF9 0%, #FFF94C 51%, #004FF9 100%);
	margin: 10px;
	padding: 15px 45px;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: white;
	box-shadow: 0 0 20px #eee;
	border-radius: 10px;
	display: block;
	border: none;
	font-weight: 500;
}

.btn-grad:hover {
	background-position: right center;
	color: #fff;
	text-decoration: none;
}

.login-image {
	background-image: url('gambar/kebull.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0 !important;
	margin: 0 !important;
	align-self: stretch;
	min-height: 550px;
	max-height: 550px;
	height: 100%;
	display: block;
	overflow: hidden;
}

.text-center a {
	color: #007bff;
	text-decoration: none;
	transition: color 0.3s;
}

.text-center a:hover {
	color: #0056b3;
}