.elementor-3332 .elementor-element.elementor-element-58f0a73{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}/* Start custom CSS for html, class: .elementor-element-780938a */.login-container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 100%;
	max-width: 900px;
	min-height: 550px;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.login-left {
	background: #DF393A;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.login-left::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
	animation: float 20s linear infinite;
}

@keyframes float {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.logos-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.main-logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.main-logo img {
	width: 260px;
}

.welcome-text {
	position: relative;
	z-index: 1;
}

.welcome-text h2 {
	font-size: 28px;
	color:#fff;
	margin-bottom: 15px;
	font-weight: 300;
}

.welcome-text p {
	font-size: 16px;
	opacity: 0.9;
	line-height: 1.5;
}

.login-right {
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.login-form h1 {
	font-size: 32px;
	color: #333;
	margin-bottom: 10px;
	font-weight: 300;
}

.login-form .subtitle {
	color: #666;
	margin-bottom: 40px;
	font-size: 16px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-weight: 500;
	font-size: 14px;
}

.form-control {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: #fafafa;
}

.form-control:focus {
	outline: none;
	border-color: #c8514d;
	background: white;
	box-shadow: 0 0 0 3px rgba(200, 81, 77, 0.1);
}

.login-btn {
	width: 100%;
	padding: 15px;
	background: #DF393A;
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(200, 81, 77, 0.3);
}

.login-btn:active {
	transform: translateY(0);
}

.error-message {
	background: #fee;
	border: 1px solid #fcc;
	color: #c33;
	padding: 15px 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 14px;
	display: none;
	animation: shake 0.5s ease-in-out;
}

.error-message.show {
	display: block;
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}

.forgot-password {
	text-align: center;
	margin-top: 20px;
}

.forgot-password a {
	color: #DF393A;
	text-decoration: none;
	font-size: 14px;
}

.forgot-password a:hover {
	text-decoration: underline;
}

.register-link {
	text-align: center;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
	color: #666;
	font-size: 14px;
}

.register-link a {
	color: #c8514d;
	text-decoration: none;
	font-weight: 500;
}

.register-link a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.login-container {
		grid-template-columns: 1fr;
		margin: 10px; 
		max-width: calc(100vw - 20px); 
		min-height: auto; 
	}

	.login-left {
		padding: 20px 15px; 
		min-height: auto;
		height: auto; 
	}

	.welcome-text h2 {
		font-size: 22px; 
		margin-bottom: 10px;
	}

	.welcome-text p {
		font-size: 14px; 
		line-height: 1.4;
	}

	.login-right {
		padding: 25px 20px;
	}

	.login-form h1 {
		font-size: 26px;
		margin-bottom: 8px;
	}

	.form-control {
		padding: 12px 15px;
		font-size: 16px; 
	}

	.login-btn {
		padding: 12px;
	}
}

@media (max-width: 480px) {
	.login-container {
		margin: 5px;
		max-width: calc(100vw - 10px);
	}
	
	.login-left {
		padding: 15px 10px;
	}
	
	.login-right {
		padding: 20px 15px;
	}
}/* End custom CSS */