@import url(./reset.css);

.wrap {
	padding: var(--Radius---XL, 40px) 108px 80px 108px;
	flex-direction: column;
	box-sizing: border-box;
}

.register_type_top {
	padding: 0px 104px;
	margin: 80px 0;
}

.register_type_top_title {
	color: var(--Text-Color-Primary, #1a1a1a);
	font-family: "Noto Sans TC";
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 42px;
	letter-spacing: 0.2px;
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 16px;
}

.register_type_top_content {
	color: var(--Text-Color-Secondary, #525252);
	font-family: "Noto Sans TC";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: 0.1px;
}

.register_type_bottom {
	display: flex;
	padding: 0px 104px;
	align-items: flex-start;
	align-content: flex-start;
	gap: 0px 76px;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

.register_type_bottom_box {
	display: flex;
	height: 324px;
	padding: 24px;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	flex: 1 0 0;
	border-radius: 20px;
	background: var(--Background-Color-Gray, #f2f2f2);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register_type_bottom_box:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.register_type_bottom_box_header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.register_type_bottom_box_header svg {
	margin-bottom: 16px;
}

.register_type_bottom_box_header p {
	color: var(--Text-Color-Primary, #1a1a1a);
	text-align: center;
	font-family: "Noto Sans TC";
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 36px;
	letter-spacing: 0.2px;
}

.register_type_bottom_box_content {
	color: var(--Text-Color-Secondary, #525252);
	font-family: "Noto Sans TC";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: 0.1px;
}

@media screen and (max-width: 1439px) {
	.wrap {
		padding: var(--Radius---XL, 40px) 40px 80px 40px;
	}

	.register_type_top {
		padding: 0px 78px;
	}

	.register_type_top_title {
		font-size: 24px;
		line-height: 36px;
		letter-spacing: 0.1px;
	}

	.register_type_top_title svg {
		width: 36px;
		height: 36px;
	}

	.register_type_bottom {
		padding: 0 78px;
		gap: 24px;
	}

	.register_type_bottom_box {
		height: 368px;
	}
}

@media screen and (max-width: 991px) {
	.wrap {
		padding: var(--Radius---XL, 20px) 40px 40px 40px;
	}

	.register_type_top {
		padding: 0px 88px;
		margin: 40px 0;
	}

	.register_type_top_title {
		justify-content: center;
		margin-bottom: 8px;
	}

	.register_type_top_content {
		display: flex;
		justify-content: center;
	}

	.register_type_bottom {
		padding: 0 88px;
		flex-direction: column;
		margin-bottom: 40px;
	}

	.register_type_bottom_box {
		height: 180px;
		flex-direction: row;
		align-items: center;
		gap: 40px;
	}

	.register_type_bottom_box_header svg {
		margin-bottom: 0;
	}

	.register_type_bottom_box_header p {
		font-size: 22px;
		line-height: 32px;
		letter-spacing: 0.1px;
		white-space: nowrap;
	}
}

@media screen and (max-width: 767px) {
	.wrap {
		padding: 40px 24px;
	}

	.register_type_top {
		padding: 0px;
	}

	.register_type_top_title svg {
		width: 24px;
		height: 24px;
	}

	.register_type_top_title {
		font-size: 22px;
		line-height: 32px;
	}

	.register_type_top_content {
		font-size: 10px;
		line-height: 16px;
	}

	.register_type_bottom {
		padding: 0;
	}

	.register_type_bottom_box {
		padding: 24px 16px;
		gap: 16px;
	}

	.register_type_bottom_box_header p {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.5px;
		font-weight: 500;
	}

	.register_type_bottom_box_content {
		font-size: 12px;
		line-height: 18px;
	}
}