
body, .login-bg-gradient {
	min-height: 100vh;
	background: linear-gradient(135deg, #f8fafc 0%, #f5f6fa 100%);
}

.login-center {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-card {
	border-radius: 22px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
	background: #fff;
	max-width: 400px;
	width: 100%;
}

.login-icon-box {
	background: transparent;
	border-radius: 16px;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
}

.login-title {
	font-weight: 700;
	font-size: 1.6rem;
}

.login-subtitle {
	font-size: 1rem;
}

.input-group-text {
	background: #f5f6fa !important;
	border: none !important;
	color: #b0b3b8 !important;
	font-size: 1.2rem;
}

.form-control {
	background: #f5f6fa !important;
	border: none !important;
	border-radius: 12px !important;
	font-size: 1rem;
	padding-left: 0.75rem;
	box-shadow: none !important;
}

.form-control:focus {
	background: #f5f6fa;
	border: 1.5px solid #1563ff !important;
	box-shadow: 0 0 0 2px #1563ff22;
}

.login-btn {
	background: #1563ff;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: background 0.2s;
}
.login-btn:hover, .login-btn:focus {
	background: #0d47a1;
}

.login-check {
	display: flex;
	align-items: center;
}

.login-check-input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.login-check-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	background: #f5f6fa;
	border: 1px solid #e6e9f2;
	color: #1f2937;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.login-check-box {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	border: 2px solid #1563ff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	flex: 0 0 22px;
}

.login-check-box::after {
	content: "";
	width: 10px;
	height: 6px;
	border: 3px solid #fff;
	border-top: 0;
	border-right: 0;
	transform: rotate(-45deg) scale(0.8);
	opacity: 0;
	transition: opacity 0.15s ease;
}

.login-check-input:checked + .login-check-label {
	background: #eaf1ff;
	border-color: #1563ff;
	box-shadow: 0 0 0 2px #1563ff1f;
}

.login-check-input:checked + .login-check-label .login-check-box {
	background: #1563ff;
}

.login-check-input:checked + .login-check-label .login-check-box::after {
	opacity: 1;
}

.login-check-input:focus-visible + .login-check-label {
	outline: 2px solid #1563ff;
	outline-offset: 2px;
}

.login-check-text {
	line-height: 1.3;
}

.login-check-help {
	margin-top: 6px;
}

.login-password-toggle {
	background: #f5f6fa !important;
	border: none !important;
	color: #6b7280 !important;
	cursor: pointer;
}

.login-password-toggle i {
	font-size: 1.1rem;
}

.login-password-toggle:focus-visible {
	outline: 2px solid #1563ff;
	outline-offset: 2px;
	border-radius: 10px;
}

@media (max-width: 576px) {
	.login-check-label {
		padding: 12px 14px;
		font-size: 0.98rem;
	}
	.login-check-box {
		width: 26px;
		height: 26px;
		flex: 0 0 26px;
	}
	.login-check-box::after {
		width: 12px;
		height: 7px;
	}
}
