.content-login {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 32px 0;
}

.content-login .button-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 0 16px;
}
.content-login .button-wrap .text-box {
	display: flex;
	align-items: center;
	gap: 4px;
	position: relative;
	padding: 8px 16px;
	border: 1px solid #EEE;
	font-size: 12px;
	font-weight: bold;
	color: #000;
}
.content-login .button-wrap .text-box:before {
	position: absolute;
	left: 50%;
	bottom: -8px;
	z-index: 2;
	border-top: 9px solid #fff;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	content: "";
	transform: translate(-50%);
}
.content-login .button-wrap .text-box:after {
	position: absolute;
	bottom: -11px;
	left: 50%;
	z-index: 1;
	border-top: 11px solid #eee;
	border-right: 9px solid transparent;
	border-bottom: 0;
	border-left: 9px solid transparent;
	content: "";
	transform: translate(-50%);
}
.content-login .button-wrap #buttonBox {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}
.content-login .button-wrap #buttonBox button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(25% - 6px);
	max-width: 64px;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}
.content-login .button-wrap #buttonBox button.naver-button {
	background: #2DBE01;
}
.content-login .button-wrap #buttonBox button.naver-button img {
	width: 18px;
}
.content-login .button-wrap #buttonBox button.kakao-button {
	background: #FFE20C;
}
.content-login .button-wrap #buttonBox button.kakao-button img {
	width: 28px;
}
.content-login .button-wrap #buttonBox button.google-button {
	border: 1px solid #DDD;
}
.content-login .button-wrap #buttonBox button.google-button img {
	width: 24px;
}
.content-login .button-wrap #buttonBox button.apple-button {
	background: #000;
}
.content-login .button-wrap #buttonBox button.apple-button img {
	width: 20px;
}
.content-login .link-list {
	display: flex;
	justify-content: center;
	gap: 8px;
}
.content-login .link-list .link-item {
	display: flex;
	align-items: center;
	gap: 8px;
}
.content-login .link-list .link-item:after {
	width: 1px;
	height: 16px;
	background: #D1D5DB;
	content: "";
}
.content-login .link-list .link-item:last-child:after {
	display: none;
}