input:focus, 
select:focus, 
textarea:focus, 
button:focus {
	outline: none !important;
	box-shadow: none !important; /* AdminLTE thường có đổ bóng nhẹ, dùng dòng này để xóa sạch */
	border-color: #9eb6eb !important; /* Giữ màu viền cũ nếu muốn, hoặc đổi màu tùy ý */
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Arial, sans-serif;
}

/* Đảm bảo body chiếm trọn màn hình và không có thanh cuộn thừa */
body, html {
	height: 100%;
	width: 100%;
	overflow: hidden; 
}

.login-wrapper {
	display: flex;
	height: 100vh; /* Chiều cao tràn màn hình */
	width: 100vw;  /* Chiều rộng tràn màn hình */
}

/* Phần hình ảnh bên trái: Chiếm 65% màn hình */
.login-image {
	flex: 6.5;
	background: url('../images/imglogin.jpg') no-repeat center center/cover;
	transition: 0.5s;
}

/* Phần form bên phải: Chiếm 35% màn hình */
.login-form-section {
	flex: 3.5;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 50px;
	box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.form-content {
	width: 100%;
	max-width: 400px;
}

.form-content h2 {
	font-size: 2rem;
	margin-bottom: 10px;
	color: #222;
}

.form-content p.subtitle {
	color: #777;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #444;
}

.form-group input {
	width: 100%;
	padding: 14px;
	border: 1px solid #e1e1e1;
	border-radius: 5px;
	background: #f9f9f9;
	font-size: 16px;
}

.btn-login {
	width: 100%;
	padding: 15px;
	background-color: #2563eb;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
}

/* Responsive cho máy tính bảng và điện thoại */
@media (max-width: 1024px) {
	.login-image { flex: 5; }
	.login-form-section { flex: 5; }
}

@media (max-width: 768px) {
	body { overflow: auto; } /* Cho phép cuộn trên mobile */
	.login-wrapper {
		flex-direction: column;
		height: auto;
		min-height: 100vh;
	}
	.login-image {
		height: 300px; /* Thu nhỏ ảnh trên mobile */
		width: 100%;
	}
	.login-form-section {
		padding: 50px 20px;
		width: 100%;
	}
}