* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	margin: 0;
	background-color: #f8f9fa;
}

.login-container {
	display: flex;
	width: 100vw;
	height: 100vh;
}

.login-left,
.login-right {
	flex: 1; /* Membagi 50% untuk kiri dan kanan */
}

.login-left {
	background-color: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-left img {
	width: 100%;
	height: 100vh;
	object-fit: cover; /* Gambar penuh, mengikuti area */
}

.login-right {
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.login-separater {
	position: absolute;
	top: 10px;
	right: 0;
	transform: translateX(-50%);
	text-align: center;
	z-index: 100;
}

.login-separater .logo img {
	width: 120px;
	height: auto;
	margin-bottom: 10px;
}

.welcome-text {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}

.text-secondary {
	font-size: 12px;
	color: #6c757d;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background-color: #007bff;
	border: none;
	border-radius: 5px;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
}

.btn:active {
	background-color: #004085;
	transform: translateY(0);
}

.btn:disabled {
	background-color: #6c757d;
	cursor: not-allowed;
}

.form-label {
	font-weight: 500;
	font-size: 0.75rem;
	color: #333;
	margin-bottom: 0.2rem;
	display: block;
}

.form-control {
	border-radius: 6px;
	padding: 0.5rem;
	font-size: 0.75rem;
	border: 1px solid #ccc;
	transition: border-color 0.3s ease;
}

.form-control:focus {
	border-color: #007bff;
	box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}
