.elementor-3366 .elementor-element.elementor-element-e6bea3a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-0d3f4a7 */:root {
	--primary-green: #13AB7B;
	--secondary-green: #16c786;
	--light-green: rgba(19, 171, 123, 0.08);
	--dark-green: #095f44;
	--error-color: #e53e3e;
	--warning-color: #ed8936;
	--success-color: #38a169;
	
	--text-primary: #2d3748;
	--text-secondary: #4a5568;
	--text-muted: #718096;
	--border-light: #e2e8f0;
	--bg-white: #ffffff;
	--bg-gray: #f7fafc;
	--bg-section: #fafbfc;
	
	--shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--border-radius: 12px;
}
.verification-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background: var(--bg-white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr auto;
}

.verification-header {
	background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
	color: white;
	padding: 30px 40px;
	text-align: center;
	position: relative;
}

.verification-header::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	position: relative;
	z-index: 1; 
}


.header-text {
	text-align: left;
}

.verification-title {
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 5px;
	color:#fff;
	
}

.verification-subtitle {
	font-size: 14px;
	opacity: 0.9;
}

.verification-content {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 0;
}

.verification-form-section {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

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

.form-label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.form-help {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.form-input {
	width: 100%;
	padding: 16px 20px;
	border-radius: 8px !important;
	font-size: 18px;
	color: var(--text-primary);
	background: var(--bg-white);
	transition: all 0.3s ease;
	letter-spacing: 1px;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(19, 171, 123, 0.1);
}

.form-input::placeholder {
	color: var(--text-muted);
	letter-spacing: normal;
}

.verify-button {
	background-color: #13AB7B;
		font-family: "Open Sans", Sans-serif;
		font-size: 14px;
		font-weight: 700;
		fill: #FFFFFF;
		color: #FFFFFF;
		border-radius: 28px 28px 28px 28px;
	
}

.verify-button:hover {
	background: var(--dark-green);
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.verify-button:active {
	transform: translateY(0);
}

.verify-button:disabled {
	background: var(--text-muted);
	cursor: not-allowed;
	transform: none;
}
.loading-spinner {
	display: none;
	width: 20px;
	height: 20px;
	border: 2px solid transparent;
	border-top: 2px solid white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-right: 10px;
}

.verify-button.loading .loading-spinner {
	display: inline-block;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.result-section {
	display: none;
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid var(--primary-green);
}

.result-section.loading {
	display: block;
	background: rgba(237, 137, 54, 0.1);
	border-left-color: var(--warning-color);
	color: var(--warning-color);
}

.result-section.success {
	display: block;
	background: rgba(56, 161, 105, 0.1);
	border-left-color: var(--success-color);
	color: var(--success-color);
}

.result-section.error {
	display: block;
	background: rgba(229, 62, 62, 0.1);
	border-left-color: var(--error-color);
	color: var(--error-color);
}

.result-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.result-text {
	font-size: 14px;
	line-height: 1.5;
}

.verification-info-section {
	background: var(--bg-section);
	border-left: 1px solid var(--border-light);
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info-block {
	background: var(--bg-white);
	border: 1px solid var(--border-light);
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 25px;
}

.info-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 15px;
}

.info-list {
	list-style: none;
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.2;
}

.info-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	font-size:14px;
}

.info-list li::before {
	content: '✓';
	color: var(--primary-green);
	font-weight: bold;
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-block {
	background: var(--bg-white);
	border: 1px solid var(--border-light);
	border-radius: 8px;
	padding: 25px;
}

.contact-block h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 15px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--text-secondary);
}

.contact-item strong {
	color: var(--text-primary);
	min-width: 70px;
}

.contact-link {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contact-link:hover {
	color: var(--dark-green);
}

.verification-footer {
	background: var(--bg-section);
	border-top: 1px solid var(--border-light);
	padding: 20px 40px;
	text-align: center;
}

.back-link {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.back-link:hover {
	color: var(--primary-green);
}

@media (max-width: 1024px) {
	.verification-content {
		grid-template-columns: 1fr 320px;
	}
	
	.verification-form-section {
		padding: 30px;
	}
	
	.verification-info-section {
		padding: 30px 25px;
	}
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
	body {
		padding: 20px 15px;
	}
	
	.verification-container {
		max-width: 100%;
	}
	
	.verification-content {
		grid-template-columns: 1fr;
	}
	
	.verification-info-section {
		border-left: none;
		border-top: 1px solid var(--border-light);
	}
	
	.verification-header {
		padding: 25px 30px;
	}
	
	.header-content {
		flex-direction: column;
		gap: 15px;
	}
	
	.header-text {
		text-align: center;
	}
	
	.verification-title {
		font-size: 20px;
	}
	
	.verification-form-section {
		padding: 25px 20px;
	}
	
	.verification-info-section {
		padding: 25px 20px;
	}
	
	.verification-footer {
		padding: 15px 20px;
	}
}

@media (max-width: 480px) {
	.form-input {
		font-size: 16px;
		padding: 14px 16px;
	}
	
	.verify-button {
		font-size: 16px;
		padding: 16px 20px;
	}
	
	.contact-item {
		font-size: 13px;
	}
	
	.contact-item strong {
		min-width: 60px;
	}
}

/* Анимации */
.verification-container {
	animation: slideUp 0.6s ease;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.result-section {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}/* End custom CSS */