/* Legends Boost Auth CSS */

/* Hide theme header and footer on auth pages */
body.lb-is-auth header,
body.lb-is-auth footer {
	display: none !important;
}

body.lb-is-auth main {
	display: none !important;
}

/* Reset body for auth pages */
body.lb-is-auth {
	margin: 0 !important;
	padding: 0 !important;
	background: #0f0f23 !important;
}

.lb-auth-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
	width: 100%;
}

.lb-auth-left {
	background: #12121f;
	padding: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lb-auth-content {
	width: 100%;
	max-width: 400px;
}

.lb-auth-heading {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.5rem 0;
}

.lb-auth-subheading {
	font-size: 1rem;
	color: #a0aec0;
	margin: 0 0 2rem 0;
}

.lb-auth-link {
	color: #7c3aed;
	text-decoration: none;
	font-weight: 600;
}

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

.lb-auth-button {
	width: 100%;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	transition: all 0.2s ease;
}

.lb-auth-button-google {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.lb-auth-button-google:hover {
	background: rgba(255, 255, 255, 0.08);
}

.lb-auth-button-primary {
	background: #2563eb;
	color: #ffffff;
}

.lb-auth-button-primary:hover {
	background: #1d4ed8;
}

.lb-auth-divider {
	position: relative;
	text-align: center;
	margin: 2rem 0;
}

.lb-auth-divider span {
	background: #12121f;
	padding: 0 1rem;
	font-size: 0.875rem;
	color: #a0aec0;
	position: relative;
	z-index: 1;
}

.lb-auth-divider::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}

.lb-auth-form-group {
	margin-bottom: 1.25rem;
}

.lb-auth-input {
	width: 100%;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	box-sizing: border-box;
}

.lb-auth-input:focus {
	outline: none;
	border-color: #7c3aed;
}

.lb-auth-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.25rem;
}

.lb-auth-checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #e2e8f0;
}

.lb-auth-checkbox {
	width: 1rem;
	height: 1rem;
}

.lb-auth-right {
	background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
	padding: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.lb-auth-right::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 50 Q25 30, 40 50 T70 50' fill='none' stroke='%233b82f6' stroke-opacity='0.1' stroke-width='2'/%3E%3C/svg%3E");
	opacity: 0.3;
}

.lb-auth-graphic {
	position: relative;
	z-index: 1;
}

.lb-auth-crown {
	width: 300px;
	height: 300px;
	filter: drop-shadow(0 25px 50px rgba(59, 130, 246, 0.3));
}

@media (max-width: 768px) {
	.lb-auth-container {
		grid-template-columns: 1fr;
	}

	.lb-auth-right {
		display: none;
	}

	.lb-auth-left {
		padding: 2rem 1.5rem;
	}

	.lb-auth-heading {
		font-size: 2rem;
	}
}
