* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: #f0f0f0; /* 화면 밖(860px 바깥) 배경색 */
	min-height: 100vh;
}

.error-container {
	width: 100%;
	max-width: 860px;
	height: 100%;
	min-height: 100vh;
	position: relative;
	background: white;
	overflow: hidden;
	margin: 0 auto;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 6px
		rgba(0, 0, 0, 0.08); /* 테두리(그림자) */
}

.error-content {
	width: 89.33%; /* 335/375 */
	max-width: 335px;
	left: 50%;
	transform: translateX(-50%);
	top: 194px;
	position: absolute;
	overflow: hidden;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
	display: flex;
}

.error-icon-wrapper {
	width: 100%;
	max-width: 280px;
	aspect-ratio: 1/1;
	padding: 24px 40px;
	background: #EFF6FF;
	border-radius: 150px;
	justify-content: center;
	align-items: center;
	display: flex;
}

.error-icon-image {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.error-text-group {
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	display: flex;
}

.error-title {
	color: #1F1F1F;
	font-size: 24px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 700;
	line-height: 38.40px;
	word-wrap: break-word;
}

.error-desc {
	text-align: center;
	color: #343434;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	line-height: 25.60px;
	word-wrap: break-word;
}

.error-footer {
	width: 100%;
	max-width: 860px;
	padding: 16px 12px 12px;
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 13%,
		white 100%);
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	display: flex;
}

.error-back-btn {
	align-self: stretch;
	height: 52px;
	background: #094E7F;
	overflow: hidden;
	border-radius: 4px;
	justify-content: center;
	align-items: center;
	display: flex;
	border: none;
	cursor: pointer;
	width: 100%;
}

.error-back-btn-label {
	color: white;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 700;
	word-wrap: break-word;
}

.error-back-btn:hover {
	background: #073e66;
}

@media ( max-width : 400px) {
	.error-content {
		top: 15vh;
	}
}