:root {
	--ae-color-background: #f2f2f2;
	--ae-color-primary: #9c27b0;
	--ae-color-primary-light: #ce93d8;
	--ae-color-primary-dark: #7b1fa2;
	--ae-color-secondary: #00bcd4;
	--ae-color-secondary-light: #80deea;
	--ae-color-secondary-dark: #0097a7;
	--ae-color-text: #212121;
	--ae-color-text-light: #757575;
	--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(--ae-color-background);
}

.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%;
}

.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: #27a0b0;
	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: #27a0b0;
}

@media (max-width: 480px) {
	.thank-you-content {
		padding: 2rem;
	}

	.thank-you-content h1 {
		font-size: 2rem;
	}

	.thank-you-content p {
		font-size: 1rem;
	}
}
