:root {
	--ep-bg-primary: #0e0e0e;
	--ep-bg-secondary: #1a1a1a;
	--ep-bg-tertiary: #252525;
	--ep-accent-primary: #d500f9;
	--mr-light-text: #ffffff;
	--mr-dark-accent: #001f3f;
	--mr-gray-light: #e0e0e0;
	--mr-gray: #9e9e9e;
	--mr-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--mr-transition: all 0.3s ease;
	--mr-border-radius: 4px;
	--mr-section-padding: 80px 0;
	--mr-container-padding: 0 20px;
}
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(--ep-bg-primary);
}

.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: #d500f9;
	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: #d500f9;
	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: #d500f9;
	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: #d500f9;
}

@media (max-width: 480px) {
	.thank-you-content {
		padding: 2rem;
	}

	.thank-you-content h1 {
		font-size: 2rem;
	}

	.thank-you-content p {
		font-size: 1rem;
	}
}
