@charset "utf-8";

.cb-local-member-mypage-welcome {
	margin: 0 0 20px 0;
	padding: 20px;
	background-color: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.cb-local-member-mypage-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 12px;
	border-bottom: 1px dashed #e0e0e0;
}

.cb-local-member-mypage-icon {
	font-size: 1.5rem;
	margin-right: 12px;
	color: #ff6600;
}

.cb-local-member-mypage-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.cb-local-member-mypage-message {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #666;
	margin-bottom: 15px;
}

.cb-local-member-mypage-message strong {
	color: #e63312;
	font-weight: 600;
}

.cb-local-member-mypage-features {
	margin-top: 15px;
}

.cb-local-member-mypage-feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.cb-local-member-mypage-feature-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f0f0f0;
	border-radius: 50%;
	margin-right: 12px;
	color: #ff6600;
	flex-shrink: 0;
}

.cb-local-member-mypage-feature-text {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.4;
}

.cb-local-member-mypage-feature-text strong {
	color: #333;
	font-weight: 600;
}

.cb-local-member-agreement-content {
	display: none;
	max-height: 200px;
	overflow-y: auto;
	border: 1px solid #ddd;
	padding: 15px;
	margin-top: 10px;
	background-color: #f9f9f9;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
}

.cb-local-member-agreement-content.active {
	display: block;
}

.cb-local-member-agreement-table {
	width: 100%;
	border-collapse: collapse;
}

.cb-local-member-agreement-table th,
.cb-local-member-agreement-table td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

.cb-local-member-agreement-table th {
	background-color: #f2f2f2;
}

.sign-arrow--agreement {
	transition: transform 0.3s ease;
}

.agreement-btn.on .sign-arrow--agreement {
	transform: rotate(180deg);
}

/* 팝업 스타일 */
.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.popup-content {
	background-color: #fff;
	padding: 30px;
	border-radius: 5px;
	max-width: 400px;
	width: 100%;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.popup-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.popup-message {
	margin-bottom: 25px;
	line-height: 1.5;
}

.popup-button {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.popup-button:hover {
	background-color: #0069d9;
}

.valid-text .msg.error {
	display: block;
	color: #ff0000;
}

.valid-text .msg.success {
	display: block;
	color: #008000;
}

.select-gender {
	display: flex;
	align-items: center;
}

.id-check-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.input-set {
	flex: 1;
}

.id-check-btn-wrap {
	margin-left: 10px;
}

.btn-check-id {
	padding: 8px 15px;
	background-color: #f87e0f;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	margin-right: 10px;
}

.btn-check-id:hover {
	background-color: #c4660e;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-check-id:active {
	background-color: #f87e0f;
	transform: translateY(1px);
}

/* 환영 팝업 스타일 */
.cb-local-member-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.cb-local-member-popup-container {
	background-color: white;
	border-radius: 8px;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.cb-local-member-popup-content {
	padding: 20px;
}

.cb-local-member-popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.cb-local-member-popup-header h3 {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin: 0;
}

.cb-local-member-popup-close {
	background: none;
	border: none;
	font-size: 24px;
	color: #666;
	cursor: pointer;
}

.cb-local-member-popup-body {
	text-align: center;
}

.cb-local-member-popup-icon {
	margin-bottom: 15px;
}

.cb-local-member-popup-welcome {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
}

.cb-local-member-popup-message {
	font-size: 15px;
	color: #666;
	margin-bottom: 5px;
}

.cb-local-member-popup-submessage {
	font-size: 14px;
	color: #999;
	margin-bottom: 20px;
}

.cb-local-member-popup-footer {
	text-align: center;
	margin-top: 20px;
}

.cb-local-member-popup-button {
	padding: 10px 30px;
	font-size: 15px;
	font-weight: 500;
	background-color: #1a73e8;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

@keyframes cb-local-member-popup-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 480px) {
	.cb-local-member-popup-body {
		padding: 24px 20px;
	}

	.cb-local-member-popup-welcome {
		font-size: 20px;
	}

	.cb-local-member-popup-message {
		font-size: 15px;
	}
}

.cb-local-member-agreement-content {
	display: none;
	max-height: 200px;
	overflow-y: auto;
	border: 1px solid #ddd;
	padding: 15px;
	margin-top: 10px;
	background-color: #f9f9f9;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
}

.cb-local-member-agreement-content.active {
	display: block;
}

.cb-local-member-agreement-table {
	width: 100%;
	border-collapse: collapse;
}

.cb-local-member-agreement-table th,
.cb-local-member-agreement-table td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

.cb-local-member-agreement-table th {
	background-color: #f2f2f2;
}

.sign-arrow--agreement {
	transition: transform 0.3s ease;
}

.agreement-btn.on .sign-arrow--agreement {
	transform: rotate(180deg);
}

.sign-section {
	margin-bottom: 20px;
}

.sign-section__notice {
	font-size: 14px;
	color: #666;
	margin-top: 10px;
}

.login-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	padding: 0 10px;
}

.login-options__remember {
	display: flex;
	align-items: center;
}

.login-options__remember input[type='checkbox'] {
	margin-right: 5px;
}

.login-options__links {
	display: flex;
	gap: 15px;
}

.login-options__links a {
	color: #666;
	font-size: 14px;
	text-decoration: none;
}

.login-options__links a:hover {
	text-decoration: underline;
}

.error-message {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
	display: none;
}

.error-message.show {
	display: block;
}

/* 체크박스 스타일 */
.input.alone.agreeCheck {
	display: inline-block;
	position: relative;
	margin-right: 10px;
}

.input.alone.agreeCheck input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.input.alone.agreeCheck label {
	position: relative;
	cursor: pointer;
	padding-left: 25px;
	font-size: 14px;
	line-height: 20px;
	display: inline-block;
}

.input.alone.agreeCheck label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #909090;
	background: #fff;
	border-radius: 3px;
}

.input.alone.agreeCheck input:checked + label:after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid #4caf50;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.input.alone.agreeCheck.on label:before {
	border-color: #4caf50;
	background-color: #f5f5f5;
}

/* 회원탈퇴 안내 영역 */
.cb-local-member-notice {
	background-color: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px;
}

.cb-local-member-notice-title {
	font-size: 16px;
	font-weight: bold;
	color: #dc3545;
	margin-bottom: 15px;
}

.cb-local-member-notice-list {
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 0;
}

.cb-local-member-notice-item {
	font-size: 14px;
	line-height: 1.6;
	color: #495057;
	margin-bottom: 8px;
}

.cb-local-member-notice-item:last-child {
	margin-bottom: 0;
}

.cb-local-member-notice-emphasis {
	font-weight: bold;
	color: #dc3545;
}

/* 안내 영역 스타일 */
.cb-local-member-guide {
	background-color: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 4px;
	padding: 20px;
	margin-top: 30px;
}

.cb-local-member-guide-title {
	font-size: 16px;
	font-weight: bold;
	color: #495057;
	margin-bottom: 15px;
}

.cb-local-member-guide-section {
	margin-bottom: 20px;
}

.cb-local-member-guide-section:last-child {
	margin-bottom: 0;
}

.cb-local-member-guide-subtitle {
	font-size: 15px;
	font-weight: bold;
	color: #495057;
	margin-bottom: 10px;
}

.cb-local-member-guide-list {
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 0;
}

.cb-local-member-guide-item {
	font-size: 14px;
	line-height: 1.6;
	color: #495057;
	margin-bottom: 8px;
}

.cb-local-member-guide-item:last-child {
	margin-bottom: 0;
}

.cb-local-member-guide-emphasis {
	font-weight: bold;
	color: #dc3545;
}

.select-gender {
	width: 120px;
}

.input-box {
	display: flex;
	align-items: center;
}

.certnum-container {
	display: flex;
	align-items: center;
}

.certnum-timer {
	margin-left: 10px;
	margin-right: 25px;
	color: #dc3545;
	font-weight: bold;
	font-size: 16px;
}

.cb-member-cert-timer {
	color: #ff3b30;
	font-weight: bold;
	margin-left: 10px;
	font-size: 14px;
}

.cb-local-member-popup-button-cancel {
	background-color: #f1f1f1;
	color: #333;
	margin-right: 10px;
}

.cb-local-member-popup-button {
	padding: 8px 20px;
	border-radius: 4px;
	border: none;
	background-color: #4caf50;
	color: white;
	font-weight: bold;
	cursor: pointer;
}

.cb-local-member-popup-footer {
	display: flex;
	justify-content: center;
	padding: 15px 0;
}

/* 회원가입 페이지 스타일 */
.cb-member-new-container {
	max-width: 500px;
	margin: 0 auto;
	padding: 20px;
	font-family: 'Noto Sans KR', sans-serif;
}

.cb-member-new-title {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
	color: #333;
}

.cb-member-new-tabs {
	display: flex;
	margin-bottom: 30px;
	border-bottom: 1px solid #ddd;
}

.cb-member-new-tab {
	flex: 1;
	text-align: center;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 500;
	color: #666;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cb-member-new-tab.active {
	color: #1a73e8;
	border-bottom: 2px solid #1a73e8;
	font-weight: 700;
}

.cb-member-new-section {
	margin-bottom: 20px;
}

.cb-member-new-input-group {
	position: relative;
	margin-bottom: 20px;
}

.cb-member-new-input {
	width: 100%;
	height: 50px;
	padding: 10px 15px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 4px;
	transition: border-color 0.3s ease;
}

.cb-member-new-input:focus {
	border-color: #1a73e8;
	outline: none;
}

.cb-member-new-label {
	position: absolute;
	left: 15px;
	top: 15px;
	font-size: 16px;
	color: #999;
	transition: all 0.3s ease;
	pointer-events: none;
}

.cb-member-new-input:focus + .cb-member-new-label,
.cb-member-new-input:not(:placeholder-shown) + .cb-member-new-label {
	top: -10px;
	left: 10px;
	font-size: 12px;
	background-color: #fff;
	padding: 0 5px;
	color: #1a73e8;
}

.cb-member-new-input-with-button {
	display: flex;
}

.cb-member-new-input-with-button .cb-member-new-input {
	flex: 1;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.cb-member-new-button-check {
	width: 120px;
	background-color: #1a73e8;
	color: white;
	border: none;
	border-radius: 0 4px 4px 0;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.cb-member-new-button-check:hover {
	background-color: #1669d6;
}

.cb-member-new-button-check:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.cb-member-new-message {
	font-size: 13px;
	margin-top: 5px;
	color: #666;
}

.cb-member-new-message.error {
	color: #e53935;
}

.cb-member-new-message.success {
	color: #43a047;
}

.cb-member-new-cert-group {
	display: none;
	margin-top: 10px;
}

.cb-member-new-cert-input-group {
	display: flex;
	align-items: center;
}

.cb-member-new-cert-input {
	flex: 1;
	height: 50px;
	padding: 10px 15px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 4px 0 0 4px;
}

.cb-member-new-cert-timer {
	font-size: 14px;
	color: #e53935;
	margin-left: 10px;
	min-width: 40px;
}

.cb-member-new-button-verify {
	width: 80px;
	background-color: #1a73e8;
	color: white;
	border: none;
	border-radius: 0 4px 4px 0;
	height: 50px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}

/* 약관 동의 스타일 */
.cb-member-new-agreement-container {
	margin-top: 30px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 15px;
}

.cb-member-new-agreement-all {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.cb-member-new-agreement-all-label {
	font-size: 16px;
	font-weight: 700;
	color: #333;
	display: flex;
	align-items: center;
}

.cb-member-new-agreement-item {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cb-member-new-agreement-label {
	font-size: 14px;
	color: #333;
	display: flex;
	align-items: center;
	flex: 1;
}

.cb-member-new-agreement-required {
	color: #e53935;
	margin-right: 5px;
}

.cb-member-new-agreement-optional {
	color: #1a73e8;
	margin-right: 5px;
}

.cb-member-new-agreement-checkbox {
	margin-right: 10px;
	width: 18px;
	height: 18px;
}

.cb-member-new-agreement-toggle {
	background: none;
	border: none;
	color: #666;
	font-size: 14px;
	cursor: pointer;
	padding: 5px;
}

.cb-member-new-agreement-content {
	display: none;
	margin-top: 10px;
	margin-bottom: 15px;
	padding: 15px;
	background-color: #f9f9f9;
	border-radius: 4px;
	font-size: 13px;
	color: #666;
	line-height: 1.5;
	max-height: 200px;
	overflow-y: auto;
}

.cb-member-new-agreement-content.active {
	display: block;
}

/* 팝업 스타일 */
.cb-member-new-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.cb-member-new-popup-container {
	background-color: white;
	border-radius: 8px;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.cb-member-new-popup-header {
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cb-member-new-popup-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin: 0;
}

.cb-member-new-popup-close {
	background: none;
	border: none;
	font-size: 24px;
	color: #666;
	cursor: pointer;
}

.cb-member-new-popup-body {
	padding: 20px;
	text-align: center;
}

.cb-member-new-popup-icon {
	margin-bottom: 15px;
}

.cb-member-new-welcome-title {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
}

.cb-member-new-welcome-message {
	font-size: 15px;
	color: #666;
	margin-bottom: 5px;
}

.cb-member-new-popup-message {
	font-size: 15px;
	color: #666;
	margin-bottom: 15px;
	line-height: 1.5;
}

.cb-member-new-popup-buttons {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.cb-member-new-popup-button {
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 4px;
	cursor: pointer;
	margin: 0 5px;
}

.cb-member-new-popup-button-primary {
	background-color: #1a73e8;
	color: white;
	border: none;
}

.cb-member-new-popup-button-secondary {
	background-color: #f1f3f4;
	color: #333;
	border: none;
}

/* 반응형 스타일 */
@media (max-width: 480px) {
	.cb-member-new-container {
		padding: 15px;
	}

	.cb-member-new-title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.cb-member-new-tab {
		font-size: 14px;
		padding: 10px 0;
	}

	.cb-member-new-input {
		height: 45px;
		font-size: 15px;
	}

	.cb-member-new-label {
		font-size: 15px;
	}

	.cb-member-new-button-check {
		width: 100px;
		font-size: 13px;
	}

	.cb-member-new-button {
		height: 45px;
		font-size: 15px;
	}

	.cb-member-new-popup-container {
		width: 95%;
	}
}

#certLimitMessage {
	white-space: pre-line;
}

.btn-check-id:disabled,
.btn-check-id[disabled] {
	background-color: #e0e0e0 !important; /* 밝은 회색 */
	color: #a0a0a0 !important; /* 텍스트 색상 */
	cursor: not-allowed !important;
	opacity: 0.7 !important;
}
