.login-container {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	background: #f8f9fa;
	min-height: 100vh;
	font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.login-header {
	padding: 40px 20px;
	background: white;
	text-align: center;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.login-header h1 {
	font-size: clamp(20px, 6vw, 24px);
	font-weight: 800;
	color: #1e40af;
	margin: 0;
	letter-spacing: 1px;
}

.login-header h2 {
	font-size: 14px;
	font-weight: 400;
	color: #6b7280;
	margin-top: 5px;
}

.login-content {
	padding: 30px 24px;
	flex-grow: 1;
}

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

.form-group label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 6px;
	margin-left: 4px;
	text-transform: uppercase;
}

.form-control-custom {
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: white;
	font-size: 16px;
	transition: all 0.2s ease-in-out;
}

.form-control-custom:focus {
	outline: none;
	border-color: #1e40af;
	box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.login-actions {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.btn-login {
	width: 100%;
	padding: 16px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.btn-login-primary {
	background: #1e40af;
	color: white;
}

.btn-login-secondary {
	background: #ffffff;
	color: #1e40af;
	border: 1.5px solid #1e40af;
}

@media (min-width: 768px) {
	.login-container {
		min-height: auto;
		border-radius: 24px;
		margin: 40px auto;
	}
}

@media (max-width: 360px) {
	.login-header {
		padding: 30px 15px;
	}
	.login-content {
		padding: 20px 15px;
	}
	.login-header h1 {
		font-size: 20px;
	}
}

.input-icon-wrapper {
	position: relative;
}
.input-icon-wrapper i {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	pointer-events: none;
}
