:root {
	--mai-bg-color: #121212;
	--mai-primary-color: #e91e63;
	--mai-secondary-color: #e91e63;
	--mai-text-color: #e0e0e0;
	--mai-dark-gray: #1a1a1a;
	--mai-mid-gray: #2d2d2d;
	--mai-light-gray: #505050;
	--mai-border-radius: 4px;
	--mai-transition-speed: 0.3s;
	--mai-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	--mai-font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
	--mai-header-height: 80px;
}

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(--mai-bg-color);
}

.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: #e91e63;
	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: #e91e63;
	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: #e91e63;
	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: #e91e63;
}

@media (max-width: 480px) {
	.thank-you-content {
		padding: 2rem;
	}

	.thank-you-content h1 {
		font-size: 2rem;
	}

	.thank-you-content p {
		font-size: 1rem;
	}
}
