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;
}

.login-card .card-body {
	padding: 2.5rem;
	color: #212529;
}

.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);
}

.login-image {
	background-image: url('gambar/kopiteg.png');

	background-position: center; 

	background-size: contain;
	background-repeat: no-repeat;
}

.text-center a {
	color: #007bff;
	text-decoration: none;
	transition: color 0.3s;
}
.text-center a:hover {
	color: #0056b3;
}