.email-button {
	background: linear-gradient(90deg, #33edf6, #4d2ae6); /* 좌 → 우 그라데이션 */
	color: white;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: bold;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: opacity 0.3s ease;
	width: 250px;
	height: 46px;
}

.email-button:hover {
	opacity: 0.7;
	color: white;
}

.bg-email {
	background-color: #282e48;
	padding: 100px 0;
	color: white;
	text-align: center;
}

.partner-btn {
	border: 2px solid #ffffff; /* 테두리 색상: 흰색 */
	color: white;
	border-radius: 8px;
	padding: 8px 16px;
	transition: all 0.3s ease;
}

.partner-btn:hover {
	background-color: #ffffff;
	color: #4b1e85; /* 버튼 배경과 어울리는 진보라색 글씨로 반전 */
}
