:root {
	/* Основные цвета */
	--bb-primary-bg: #faf7f0;
	--bb-accent-green: #1e3a5f;
	--si-color-secondary: #26c6da;
	--si-color-text: #263238;
	--iac-text: #e0e0e0;
	--iac-text-muted: #aaaaaa;
	--iac-text-dark: #555555;
	--iac-purple: #1e3a5f;
	--iac-purple-light: #9d4de5;
	--iac-purple-dark: #7926c2;
	--iac-purple-transparent: rgba(138, 43, 226, 0.2);
	--warning: #ffc107;
	--info: #17a2b8;
	--border-radius: 8px;
	--box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	--box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.25);
	--transition: all 0.3s ease;
	--gradient-primary: linear-gradient(45deg, var(--primary), var(--secondary));
	--gradient-dark: linear-gradient(45deg, var(--dark), var(--darker));
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;

	margin: 0;
	padding: 0;
}

.thank-you-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: var(--bb-primary-bg);
}

.thank-you-content {
	background-color: white;
	padding: 3rem;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 400px;
	width: 90%;
}

.check-mark {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
}

.check-mark svg {
	width: 100%;
	height: 100%;
}

.check-mark svg circle {
	stroke: #1e3a5f;
	stroke-width: 2;
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	fill: none;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.check-mark svg path {
	stroke: #1e3a5f;
	stroke-width: 2;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	fill: none;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
	100% {
		stroke-dashoffset: 0;
	}
}

.thank-you-content h1 {
	color: #333;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.thank-you-content p {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.back-button {
	display: inline-block;
	background-color: #1e3a5f;
	color: white;
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.back-button:hover {
	background-color: #1e3a5f;
}

@media (max-width: 480px) {
	.thank-you-content {
		padding: 2rem;
	}

	.thank-you-content h1 {
		font-size: 2rem;
	}

	.thank-you-content p {
		font-size: 1rem;
	}
}
