body[frappe-session-status="logged-out"] {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: auto;
}

.page-container {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.login-wrapper {
	display: flex;
	flex: 1;
	min-height: calc(100vh - 204px);
}

.login-left {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1e3a8a;
	overflow: hidden;
	flex: 0 0 65%;
}

.bg-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.branding, .branding-mob {
	z-index: 99;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 1rem;
	margin-bottom: 2rem;
}

.branding-mob {
	display: none;
}

.branding h2, .branding-mob h2 {
	color: white;
	margin: 0;
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: 0.5rem;
}

.branding p, .branding-mob p {
	font-size: clamp(1rem, 2vw, 1.5rem);
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	padding: 0.5rem 1rem;
	border-radius: 3px;
	letter-spacing: 0.1rem;
}

.login-right {
	background: #fefefe;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	flex: 0 0 35%;
}

.login-card {
	width: 100%;
	max-width: 400px;
	margin-bottom: 20px;
}

.login-header h2 {
	font-size: 24px;
	margin-bottom: 2px;
}

.login-header p {
	margin-bottom: 1.5rem;
}

.main-footer {
	position: relative;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1e1b4b;
	color: #cbd5f5;
	font-size: 12px;
	z-index: 0;
}

@media (max-width: 1200px) {
	.login-left {
		flex: 0 0 55%;
	}
	.login-right {
		flex: 0 0 45%;
	}
}

@media (max-width: 992px) {
	.login-left {
		display: none;
	}
	.branding-mob {
		display: flex;
	}
	.login-right {
		flex: 0 0 100%;
		flex-direction: column;
		min-height: calc(100vh - 60px);
		background-image: url(/assets/nccf/images/login-design.png) !important;
		background-repeat: round !important;
		object-fit: contain !important;
	}
	.login-card {
		background-color: white !important;
		padding: 1rem !important;
		border-radius: 10px !important;
	}

}

.email-field,
.password-field {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
}

.field-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	pointer-events: none;
	display: flex;
	align-items: center;
}

.login-card .form-control {
	width: 100%;
	padding: 1.3rem 2rem !important;
}

.toggle-password {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
}

.page-card-actions .btn[type="submit"] {
	padding: 0.7rem;
}

.btn-forgot{
	margin-top: 1rem;
}
