.elementor-3366 .elementor-element.elementor-element-e6bea3a{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-3366 .elementor-element.elementor-element-e6bea3a.e-con{--align-self:center;}@media(min-width:768px){.elementor-3366 .elementor-element.elementor-element-e6bea3a{--content-width:1400px;}}/* Start custom CSS for html, class: .elementor-element-0d3f4a7 */.check-container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
	min-height: 550px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 20px;
}

.check-left {
	background: linear-gradient(45deg, #DF393A, #e55a5b);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.check-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)"/><polygon points="60,15 65,25 75,25 67,32 70,42 60,37 50,42 53,32 45,25 55,25" fill="rgba(255,255,255,0.05)"/></svg>');
	animation: float 25s 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;
}

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

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

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

.shield-icon {
	font-size: 80px;
	margin-bottom: 20px;
	opacity: 0.3;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.3; }
	50% { transform: scale(1.05); opacity: 0.5; }
}

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

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

.check-form .subtitle {
	color: #666;
	margin-bottom: 40px;
	font-size: 16px;
	line-height: 1.5;
}

.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;
	text-transform: uppercase;
	letter-spacing: 2px;
	box-sizing: border-box;
}

.form-control:focus {
	outline: none;
	border-color: #DF393A;
	background: white;
	box-shadow: 0 0 0 3px rgba(223, 57, 58, 0.1);
}

.check-btn {
	width: 100%;
	padding: 15px;
	background: linear-gradient(45deg, #DF393A, #e55a5b);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.check-btn:hover:not(.loading) {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(223, 57, 58, 0.3);
}

.check-btn:active:not(.loading) {
	transform: translateY(0);
}

.check-btn.loading {
	cursor: not-allowed;
	opacity: 0.8;
}

.btn-text {
	transition: opacity 0.3s ease;
}

.btn-text.hidden {
	opacity: 0;
}

.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s linear infinite;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.spinner.show {
	opacity: 1;
}

@keyframes spin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

.info-text {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

.info-text strong {
	color: #333;
}

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

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

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

@media (max-width: 768px) {
	body {
		align-items: flex-start;
		padding: 10px 0;
	}
	
	.check-container {
		grid-template-columns: 1fr;
		margin: 10px;
		max-width: calc(100vw - 20px);
		min-height: auto;
	}

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

	.welcome-text h2 {
		font-size: 22px;
	}
	
	.welcome-text p {
		font-size: 14px;
	}

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

	.check-form h1 {
		font-size: 26px;
	}

	.shield-icon {
		font-size: 60px;
	}
	
	.form-control {
		padding: 12px 15px;
	}
	
	.check-btn {
		padding: 12px;
	}
}
@media (max-width: 480px) {
	.check-container {
		margin: 5px;
		max-width: calc(100vw - 10px);
	}
	
	.check-left {
		padding: 15px 10px;
	}
	
	.check-right {
		padding: 20px 15px;
	}
}/* End custom CSS */