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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
	font-family: 'Inter', sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 20px;
}

.login-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	max-width: 900px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.image-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	color: white;
}

.image-section .icon-wrapper {
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 35px;
}

.image-section h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.image-section p {
	font-size: 13px;
	line-height: 1.6;
	opacity: 0.9;
	margin-bottom: 8px;
}

.image-section .badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.25);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	margin-top: 16px;
}

.form-section {
	padding: 45px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.form-section .logo-wrapper {
	text-align: center;
	margin: 0 auto 25px;
	display: flex;
	justify-content: center;
}

.form-section .logo-wrapper img {
	width: 55px;
	height: 55px;
	display: block;
}

.form-section h1 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
	text-align: center;
}

.form-section>.subtitle {
	font-size: 12px;
	color: #999;
	text-align: center;
	margin-bottom: 25px;
}

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

.label-input100 {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #333;
	margin-bottom: 6px;
}

.input100 {
	width: 100%;
	height: 38px;
	padding: 0 11px;
	font-size: 13px;
	border: 1.5px solid #e0e0e0;
	border-radius: 8px;
	background: #f9f9f9;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.input100:focus {
	outline: none;
	border-color: #667eea;
	background: white;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input100::placeholder {
	color: #999;
}

.captcha-wrapper {
	margin-bottom: 26px;
	text-align: center;
}

.captcha-wrapper-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	text-align: left;
}

.captcha-wrapper img {
	height: auto;
	max-width: 200px;
	margin: 0 auto 12px;
	display: inline-block;
	border-radius: 8px;
	border: 1.5px solid #e0e0e0;
}

.form-control-user {
	width: 100%;
	height: 38px;
	padding: 0 11px;
	font-size: 13px;
	border: 1.5px solid #e0e0e0;
	border-radius: 8px;
	background: #f9f9f9;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-control-user:focus {
	outline: none;
	border-color: #667eea;
	background: white;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-button {
	width: 100%;
	height: 40px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.login-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.login-button:active {
	transform: translateY(0);
}

.text-danger {
	color: #e74c3c;
	font-size: 11px;
	margin-top: 3px;
}

@media screen and (max-width: 768px) {
	.login-wrapper {
		grid-template-columns: 1fr;
	}

	.image-section {
		display: none;
	}

	.form-section {
		padding: 40px 25px;
	}

	.container {
		padding: 20px;
	}
}
