	/* 기본 폰트 설정 */
	body {
		font-family: 'Pretendard', sans-serif;
		margin: 0;
		padding: 0;
		background-color: #FFFFFF;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 100vh;
		padding: 40px 20px;
		box-sizing: border-box;
		color: #222;
	}

	.login-bg {
		position: fixed;
		top: 0; left: 0; width: 100%; height: 100%;
		background-color: #FFFFFF;
		background-image: radial-gradient(#F0F0F0 2px, transparent 2px);
		background-size: 30px 30px;
		z-index: -1;
	}

	.wrapper {
		width: 100%;
		max-width: 460px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	/* 메인 타이틀: 진회색 글자 + 연회색 테두리 */
	.main-title {
		font-family: 'Jua', sans-serif;
		font-size: 2.6rem;
		color: #555555;
		text-align: center;
		line-height: 1.1;
		margin-bottom: 4px;
		text-shadow: 2px 2px 0px #D1D1D1;
		white-space: nowrap;
	}

	.title-accent { color: #FF0000; }

	/* 영어 서브타이틀 */
	.sub-title {
		font-family: 'Quicksand', sans-serif;
		font-weight: 700;
		font-size: 1.25rem;
		color: #333333;
		margin-bottom: 30px;
		letter-spacing: 0.01em;
		text-shadow: 1px 1px 0px #D1D1D1;
	}

	/* 폼 박스 내부 '회원가입' 타이틀 */
	.info-text {
		font-family: 'Jua', sans-serif;
		font-size: 2.3rem;
		color: #333333;
		text-align: center;
		margin-bottom: 15px; /* 점선과의 간격 */
		text-shadow: 1.5px 1.5px 0px #E5E5E5;
		white-space: nowrap;
		letter-spacing: 0.02em;
	}

	/* [추가] 회원가입 글자 아래 구분 점선 */
	.title-divider {
		width: 100%;
		height: 1px;
		border-top: 2px dashed #FFD1D9; /* 마이페이지와 동일한 베이비 핑크 점선 */
		margin-bottom: 30px; /* 입력 폼과의 간격 */
	}

	.login-card {
		width: 100%;
		background: #FFFFFF;
		border: 3px solid #FF8FA3;
		border-radius: 25px;
		padding: 35px 25px 40px;
		box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.04);
		position: relative;
		box-sizing: border-box;
	}

	.form-group { margin-bottom: 18px; }

	.field-label {
		display: block;
		color: #444;
		font-size: 0.95rem;
		font-weight: 700;
		margin-bottom: 6px;
		padding-left: 5px;
	}

	.input-row { display: flex; align-items: center; gap: 8px; width: 100%; flex-wrap: wrap; }
	
	.input-row .radio {
		display: inline-flex;
		align-items: center;
		cursor: pointer;
	}

	.input-row .radio input {
		display: none; /* 기본 라디오 숨기기 */
	}

	.input-row .circle {
		width: 20px;
		height: 20px;
		border: 2px solid #FFB3C1;
		border-radius: 50%;
		margin-right: 8px;
		position: relative;
	}

	.input-row .circle::after {
		content: '';
		box-sizing: border-box;
		width: 15px;
		height: 20px;
		background: transparent;
		border-radius: 5px;
		position: absolute;
		top: 50%; left: 50%;
		transform: translate(-30%, -90%) rotate(-120deg) skew(20deg, 15deg);
		border-left: 4px solid black;
		border-top: 4px solid black;
		opacity: 0;
	}

	.input-row .radio input:checked + .circle::after {
		opacity: 1; /* 선택 시 점 표시 */
	}


	.input-box {
		flex: 1;
		height: 46px;
		background-color: #FFFFFF;
		border: 2px solid #EAEAEA;
		border-radius: 12px;
		padding: 0 12px;
		font-size: 0.95rem;
		color: #333333;
		transition: all 0.2s;
		outline: none;
		box-sizing: border-box;
		font-family: 'Pretendard', sans-serif;
	}

	.input-box:focus {
		background-color: #FAFAFA;
		border-color: #FF8FA3;
	}

	.btn-pink-sub {
		width: 90px;
		height: 46px;
		background: #FFB3C1;
		color: #FFFFFF;
		border: none;
		border-radius: 12px;
		font-size: 0.95rem;
		font-weight: 700;
		font-family: 'Pretendard', sans-serif;
		cursor: pointer;
		transition: background 0.2s;
		flex-shrink: 0;
	}

	.btn-pink-sub:hover { background: #FF9EBB; }

	.btn-enter {
		width: 100%;
		height: 55px;
		background: #FFB3C1;
		color: #FFFFFF;
		border: none;
		border-radius: 16px;
		font-size: 1.4rem;
		font-family: 'Jua', sans-serif;
		cursor: pointer;
		transition: background 0.2s;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 10px;
	}

	.btn-enter:hover { background: #FF9EBB; }

	.field-hint {
		font-size: 0.8rem;
		font-weight: 500;
		color: #FF6B8B;
		margin: 6px 0 0 5px;
		line-height: 1.3;
	}

	/* 모달 스타일 */
	.modal-overlay {
		position: fixed;
		top: 0; left: 0; width: 100%; height: 100%;
		background: rgba(0, 0, 0, 0.5);
		display: none;
		align-items: center;
		justify-content: center;
		z-index: 1000;
		backdrop-filter: blur(3px);
	}

	.modal-content {
		width: 92%;
		max-width: 440px;
		background: #FFFFFF;
		border: 3px solid #FFB3C1;
		border-radius: 30px;
		padding: 35px 25px;
		text-align: center;
		box-shadow: 0 20px 40px rgba(255, 179, 193, 0.3);
		animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	@keyframes modalPop {
		from { transform: scale(0.8); opacity: 0; }
		to { transform: scale(1); opacity: 1; }
	}

	.modal-title {
		font-family: 'Jua', sans-serif;
		font-size: 1.8rem;
		color: #FF8FA3;
		margin-bottom: 12px;
	}

	.code-section { margin: 20px 0; }
	.code-label { display: block; font-size: 0.9rem; color: #888; margin-bottom: 8px; font-weight: 600; }
	.code-display {
		background: #FFF0F3;
		border: 2px dashed #FFB3C1;
		border-radius: 15px;
		padding: 15px;
		font-size: 1.7rem;
		font-family: 'Jua', sans-serif;
		color: #FF5C77;
		letter-spacing: 1px;
	}

	.notice-box {
		background: #FAFAFA;
		border-radius: 15px;
		padding: 15px;
		margin-bottom: 25px;
		text-align: center;
	}

	.notice-main { font-size: 0.95rem; font-weight: 700; color: #FF0000; margin-bottom: 5px; }
	.notice-sub { font-size: 0.85rem; color: #555; line-height: 1.5; }
	.notice-footer { font-size: 0.8rem; color: #999; margin-top: 8px; }

	.btn-modal-close {
		background: #FFB3C1;
		color: #FFFFFF;
		border: none;
		border-radius: 15px;
		padding: 12px 60px;
		font-family: 'Jua', sans-serif;
		font-size: 1.3rem;
		cursor: pointer;
		transition: background 0.2s;
	}

	/* 하단 이미지 영역 */
	.bottom-deco { margin-top: 35px; display: flex; justify-content: center; }
	.hero-exc-img { width: 140px; height: auto; object-fit: contain; }

	@media (max-width: 480px) {
		.main-title { font-size: 2.0rem; }
		.sub-title { font-size: 1.0rem; }
		.info-text { font-size: 1.8rem; }
		.modal-content { padding: 30px 15px; }
		.code-display { font-size: 1.3rem; }
	}
