.footer-powered{
	display: none!important;
}

/* Login page two-column layout */
.login-page-wrapper {
	display: flex;
	min-height: 100vh;
	width: 100%;
}

.login-side-image-container {
	flex: 0 0 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #f5f7fa;
}

.login-side-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.login-forms-wrapper {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--bg-light-gray, #f4f5f7);
	padding: 2rem;
}

/* Override default section padding */
.login-forms-wrapper section.for-login,
.login-forms-wrapper section.for-forgot,
.login-forms-wrapper section.for-login-with-email-link,
.login-forms-wrapper section.for-signup,
.login-forms-wrapper section.for-email-login {
	padding: 0;
	width: 100%;
	max-width: 420px;
}

.login-forms-wrapper .login-content.page-card {
	max-width: 420px;
	width: 100%;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
	.login-page-wrapper {
		flex-direction: column;
	}

	.login-side-image-container {
		flex: 0 0 auto;
		height: 35vh;
		min-height: 200px;
	}

	.login-forms-wrapper {
		flex: 1 1 auto;
		padding: 1.5rem;
	}
}
