#login {
	background: #eef0f4;
	min-height: 100vh;
}

#login .container-fluid,
#login #page {
	padding: 0;
	margin: 0;
	max-width: none;
	min-height: 100vh;
}

.auth-shell {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.auth-card {
	width: 100%;
	max-width: 1180px;
	min-height: 680px;
	background: #fff;
	border-radius: 28px;
	box-shadow: 0 24px 60px rgba(30, 41, 59, 0.12);
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
}

.auth-left {
	padding: 40px 48px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 680px;
}

.auth-brand {
	display: flex;
	justify-content: center;
	margin-bottom: 28px;
	width: 100%;
}

.auth-brand img {
	height: 48px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

.auth-head {
	margin-bottom: 24px;
	text-align: center;
	width: 100%;
}

.auth-head h1 {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--navy-dark);
	margin: 0 0 8px;
}

.auth-head p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.92rem;
}

.auth-tabs {
	display: flex;
	background: #f3f4f8;
	border-radius: 10px;
	padding: 4px;
	margin: 0 auto 24px;
	width: 100%;
	max-width: 320px;
}

.auth-tab {
	border: 0;
	background: transparent;
	color: var(--text-muted);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 10px 16px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	flex: 1;
	text-align: center;
}

.auth-tab.active {
	background: #fff;
	color: var(--navy-dark);
	box-shadow: 0 2px 8px rgba(30, 41, 59, 0.08);
}

.auth-form-panel {
	flex: 1;
	width: 100%;
	max-width: 380px;
}

.auth-form-panel .alert {
	border-radius: 12px;
	font-size: 0.88rem;
}

.auth-field {
	margin-bottom: 16px;
}

.auth-field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--navy-dark);
	margin-bottom: 6px;
}

.auth-input-wrap {
	position: relative;
	display: block;
	width: 100%;
}

.auth-input-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: #94a3b8;
	pointer-events: none;
	z-index: 1;
}

.auth-form-panel .form-control {
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	min-height: 46px;
	font-size: 0.92rem;
	box-shadow: none;
}

.auth-form-panel .form-control:focus {
	border-color: var(--primary-orange);
	box-shadow: 0 0 0 3px rgba(98, 82, 203, 0.12);
}

.auth-input-wrap .form-control {
	padding-left: 42px;
	padding-right: 44px;
	width: 100%;
}

.auth-input-wrap .form-control:not([type="password"]) {
	padding-right: 14px;
}

.auth-input-wrap .form-control:only-child {
	padding-left: 14px;
	padding-right: 44px;
}

.auth-toggle-pass {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	padding: 0;
	color: #94a3b8;
	cursor: pointer;
	z-index: 2;
}

.auth-toggle-pass:hover {
	color: var(--primary-orange);
}

.auth-toggle-pass svg {
	position: static;
	transform: none;
	width: 18px;
	height: 18px;
	pointer-events: none;
}

.auth-remember {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 4px 0 18px;
	font-size: 0.88rem;
	color: var(--text-muted);
}

.auth-submit {
	width: 100%;
	border: 0;
	border-radius: 12px;
	background: var(--primary-orange);
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 13px 16px;
	transition: background 0.2s ease, transform 0.15s ease;
}

.auth-submit:hover {
	background: #5547b8;
	color: #fff;
	transform: translateY(-1px);
}

.auth-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 20px 0;
	color: var(--text-muted);
	font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e5e7eb;
}

.auth-google {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	color: var(--navy-dark);
	font-weight: 600;
	padding: 11px 16px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-google:hover {
	border-color: #cbd5e1;
	box-shadow: 0 4px 14px rgba(30, 41, 59, 0.06);
	color: var(--navy-dark);
}

.auth-trial {
	border-radius: 12px;
	background: #f5f3ff;
	border: 1px solid #e9e3ff;
	color: #4c1d95;
	font-size: 0.84rem;
	padding: 12px 14px;
	margin-bottom: 18px;
}

.auth-apps {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 18px;
}

.auth-footer {
	margin-top: auto;
	padding-top: 20px;
	font-size: 0.78rem;
	color: #94a3b8;
	text-align: center;
	width: 100%;
}

.auth-right {
	position: relative;
	background: linear-gradient(145deg, #6252cb 0%, #4a3db5 55%, #1e293b 100%);
	min-height: 680px;
	overflow: hidden;
}

.auth-slider {
	position: absolute;
	inset: 0;
}

.auth-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 0.8s ease, transform 6s ease;
}

.auth-slide.active {
	opacity: 1;
	transform: scale(1);
}

.auth-slide-overlay {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 48px 40px 72px;
	background: linear-gradient(180deg, rgba(30, 41, 59, 0.08) 0%, rgba(30, 41, 59, 0.72) 100%);
	color: #fff;
}

.auth-slide-content h2 {
	font-size: 1.65rem;
	font-weight: 800;
	line-height: 1.35;
	margin: 0 0 12px;
	max-width: 420px;
}

.auth-slide-content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	opacity: 0.92;
	max-width: 440px;
}

.auth-dots {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 28px;
	z-index: 3;
	display: flex;
	gap: 8px;
}

.auth-dot {
	flex: 1;
	height: 4px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	cursor: pointer;
	padding: 0;
	transition: background 0.25s ease;
}

.auth-dot.active {
	background: #fff;
}

@media (max-width: 991px) {
	.auth-card {
		grid-template-columns: 1fr;
		max-width: 520px;
		min-height: auto;
	}

	.auth-right {
		display: none;
	}

	.auth-left {
		min-height: auto;
		padding: 32px 28px 24px;
	}
}

@media (max-width: 575px) {
	.auth-shell {
		padding: 12px;
	}

	.auth-left {
		padding: 24px 20px 20px;
	}

	.auth-head h1 {
		font-size: 1.45rem;
	}
}

.auth-field-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 6px;
}

.auth-field-top label {
	margin-bottom: 0;
}

.auth-forgot-link {
	border: none;
	background: none;
	padding: 0;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--primary-orange, #6252cb);
	cursor: pointer;
	text-decoration: none;
}

.auth-forgot-link:hover {
	text-decoration: underline;
}

.auth-back-login {
	border: none;
	background: none;
	padding: 0;
	margin-top: 14px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-muted);
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
}

.auth-back-login:hover {
	color: var(--navy-dark);
}

.auth-card-single {
	max-width: 520px;
	grid-template-columns: 1fr;
}

.auth-left-full {
	width: 100%;
}

.auth-submit-link {
	display: block;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
}
