* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.notfound-outer {
	min-height: 100svh;
	min-height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--neutral-color, #ffffff);
}

.notfound-container {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
	padding: 48px 36px;
	text-align: center;
	max-width: 450px;
	width: 100%;
	margin: 0 auto;
}

.notfound-title {
	font-size: 4rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.notfound-message {
	font-size: 1.4rem;
	margin-bottom: 28px;
	color: var(--text-main, #1F2937);
}

.notfound-link {
	display: inline-block;
	padding: 10px 28px;
	background: var(--primary-color);
	color: var(--text-white, #ffffff);
	text-decoration: none;
	border-radius: 5px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.notfound-link:hover {
	background: color-mix(in srgb, var(--primary-color) 85%, black);
}