/* Tela de login - layout dividido */

.login-novo-page {
	background: #fff;
	overflow-x: hidden;
}

.login-split {
	display: flex;
	min-height: 100vh;
}

/* ---------- Lado esquerdo (formulário) ---------- */

.login-left {
	flex: 1 1 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}

.login-left-inner {
	width: 100%;
	max-width: 420px;
}

.login-logo {
	margin-bottom: 28px;
	text-align: center;
}

.login-logo img {
	max-width: 130px;
	height: auto;
}

.login-eyebrow {
	display: block;
	color: var(--template1, #ff8400);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.login-title {
	font-size: 32px;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 10px;
}

.login-subtitle {
	color: #6b7280;
	font-size: 15px;
	margin-bottom: 28px;
}

.login-left-inner label {
	font-weight: 600;
	font-size: 14px;
	color: #1a1a1a;
	margin-bottom: 8px;
	display: block;
}

.login-input-group {
	position: relative;
	display: flex;
	align-items: center;
	background: #f3f6fb;
	border: 1px solid #e5e9f2;
	border-radius: 10px;
	overflow: hidden;
}

.login-input-group input.form-control {
	flex: 1;
	border: none;
	background: transparent;
	box-shadow: none;
	padding: 13px 14px 13px 4px;
	font-size: 15px;
}

.login-input-group input.form-control:focus {
	box-shadow: none;
	background: transparent;
}

.login-input-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	color: #8a94a6;
	font-size: 16px;
}

.login-input-icon-right {
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8a94a6;
	cursor: pointer;
}

.login-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 4px 0 24px;
	font-size: 13px;
}

.login-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #4b5563;
	font-weight: 500;
	margin: 0;
	cursor: pointer;
}

.login-checkbox input {
	position: static;
	float: none;
	margin: 0;
	width: 16px;
	height: 16px;
	flex: none;
}

.login-options a {
	color: var(--template1, #ff8400);
	font-weight: 600;
	text-decoration: none;
}

.login-options a:hover {
	text-decoration: underline;
}

.login-submit-btn {
	width: 100%;
	background: var(--template1, #ff8400);
	border: none;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 14px;
	border-radius: 10px;
	transition: background .15s ease;
}

.login-submit-btn:hover {
	background: var(--template2, #df7300);
	color: #fff;
}

/* ---------- Lado direito (destaque) ---------- */

.login-right {
	flex: 1 1 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px;
	background: linear-gradient(135deg, var(--template1, #ff8400), var(--template2, #df7300));
	position: relative;
	overflow: hidden;
}

.login-right::before {
	content: "";
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	top: -160px;
	right: -160px;
}

.login-right::after {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	bottom: -120px;
	left: -100px;
}

.login-right-content {
	position: relative;
	z-index: 1;
	max-width: 420px;
	color: #fff;
}

.login-right-logo {
	max-width: 96px;
	height: auto;
	margin-bottom: 28px;
	background: #fff;
	border-radius: 16px;
	padding: 10px;
}

.login-right-content h2 {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 14px;
}

.login-right-content p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 28px;
}

.login-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.login-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
}

.login-features li i {
	font-size: 18px;
}

@media (max-width: 991px) {
	.login-right {
		display: none;
	}

	.login-left {
		flex: 1 1 100%;
	}
}
