body {
	min-height: 100vh;
	background: #f4f6f9;
	font-family: "Segoe UI", sans-serif;
	padding: 20px;
}

.login-container {
	min-height: calc(100vh - 40px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.coba{
	background-color: red;
}

.login-card {
	width: 100%;
	max-width: 1000px;

	background: white;
	border-radius: 24px;
	overflow: hidden;

	display: flex;
	min-height: 350px;
}

.login-form {
	flex: 1;
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.welcome-panel {
	flex: 1;

	position: relative;

	background-image: url("../img/login-img.webp");
	background-size: cover;
	background-position: center;

	display: flex;
	justify-content: center;
	align-items: center;

	overflow: hidden;
}

.welcome-overlay {
	position: absolute;

	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	background: linear-gradient(rgba(25, 135, 84, 0.85), rgba(20, 108, 67, 0.85));
}

.welcome-content {
	position: relative;
	z-index: 2;

	text-align: center;

	color: white;

	padding: 40px;

	max-width: 500px;
}

.welcome-content h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.welcome-content p {
	font-size: 1rem;
	line-height: 1.8;
	opacity: 0.95;
}

.form-control {
	padding: 12px;
}

.btn-success {
	padding: 12px;
	font-weight: 600;
}

@media (max-width: 992px) {
	.login-card {
		flex-direction: column;
		min-height: auto;
	}

	.welcome-panel {
		min-height: 250px;
		order: -1;
	}

	.login-form {
		padding: 30px;
	}

	.welcome-content h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {
	body {
		padding: 20px;
	}

	.login-form {
		padding: 25px;
	}

	.welcome-panel {
		min-height: 200px;
	}

	.welcome-content {
		padding: 20px;
	}

	.welcome-content h3 {
		font-size: 1.3rem;
	}

	.welcome-content p {
		font-size: 0.9rem;
		line-height: 1.6;
	}
}
