:root {
	--mb-primary: #1e88e5;
	--mb-primary-light: #6ab7ff;
	--mb-primary-dark: #005cb2;
	--mb-secondary: #ff5252;
	--mb-secondary-light: #ff867f;
	--mb-secondary-dark: #c50e29;
	--mb-bg: #f0f4f8;
	--mb-text: #1c1c1c;
	--ec-black-opacity: rgba(0, 0, 0, 0.9);
	--ec-gradient-dark: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
	--ec-gradient-primary: linear-gradient(135deg, #303f9f 0%, #f73a0f 100%);
	--ec-gradient-secondary: linear-gradient(135deg, #009688 0%, #00877a 100%);
	--ec-shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.1);
	--ec-shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.2);
	--ec-transition-fast: all 0.2s ease-in-out;
	--ec-transition-medium: all 0.3s ease-in-out;
	--ec-transition-slow: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	--ec-border-radius-sm: 4px;
	--ec-border-radius-md: 8px;
	--ec-border-radius-lg: 12px;
	--ec-spacing-xs: 0.5rem;
	--ec-spacing-sm: 1rem;
	--ec-spacing-md: 2rem;
	--ec-spacing-lg: 3rem;
	--ec-spacing-xl: 4rem;
	--ec-spacing-xxl: 6rem;
	--ec-font-family-primary: 'Montserrat', sans-serif;
	--ec-font-family-secondary: 'Raleway', sans-serif;
	--ec-max-width-container: 1200px;
	--ec-header-height: 80px;
	--ec-z-index-header: 1000;
	--ec-z-index-modal: 2000;
	--ec-z-index-cookie: 3000;
}

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(--mb-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: #303f9f;
	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: #303f9f;
	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: #303f9f;
	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: #303f9f;
}

@media (max-width: 480px) {
	.thank-you-content {
		padding: 2rem;
	}

	.thank-you-content h1 {
		font-size: 2rem;
	}

	.thank-you-content p {
		font-size: 1rem;
	}
}
