/* 단계별 진행바 스타일 */
.join-steps {
    display: flex; 
    justify-content: center; 
    margin-bottom: 24px; 
    gap: 40px;
}

.join-steps .step { 
    text-align: center; 
    color: #bbb; 
}

.join-steps .step span {
    display: inline-block; 
    width: 32px; 
    height: 32px; 
    line-height: 32px;
    border-radius: 50%; 
    background: #eee; 
    color: #bbb; 
    font-weight: bold; 
    margin-bottom: 4px;
}

.join-steps .step.active span {
    background: #e74c3c; 
    color: #fff;
}

.join-steps .step.active { 
    color: #e74c3c; 
}

/* 약관동의 스타일 */
.terms-title { 
    font-size: 18px; 
    margin-bottom: 12px; 
}

.required { 
    color: #e74c3c; 
    font-size: 14px; 
    margin-left: 4px; 
}

.optional { 
    color: #888; 
    font-size: 14px; 
    margin-left: 4px; 
}

.terms-list { 
    margin-bottom: 24px; 
}

.terms-all { 
    font-weight: bold; 
    margin-bottom: 12px; 
    display: block; 
}

.terms-item { 
    display: flex; 
    flex-direction: column;
    margin-bottom: 16px; 
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.terms-item:last-child {
    border-bottom: none;
}

.terms-item label { 
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.terms-item .show-terms { 
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    text-decoration: underline;
}

.terms-item .show-terms:hover {
    color: #e74c3c;
}

.terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.terms-content { 
    background: #fafafa; 
    border: 1px solid #eee; 
    margin-top: 0; 
    font-size: 14px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
    border-radius: 4px;
}

.terms-content.show {
    height: auto;
    transition: height 0.5s ease-in;
}

.terms-inner {
    padding: 16px;
    line-height: 1.6;
}

/* 버튼 스타일 */
.form-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 16px; 
}

/* 회원 정보 입력 폼 스타일 */
.info-form {
    /* display: none; // JS에서 제어 */
}

.info-form .form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-form .form-group label {
    width: 120px; /* 레이블 너비 고정 */
    flex-shrink: 0; /* 레이블 축소 방지 */
    font-weight: bold;
    font-size: 15px;
}

.info-form .form-content {
    display: flex;
    flex-grow: 1; /* 남은 공간 모두 차지 */
    align-items: center; /* 내부 요소 세로 정렬 */
}

.info-form .form-group button {
    margin-left: 8px;
    padding: 10px 15px;
    border: none; /* 테두리 제거 */
    background-color: #f0f0f0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    height: 40px; /* 버튼 높이 */
    white-space: nowrap;
}

.info-form .form-group button:hover {
    background-color: #e0e0e0;
}

.info-form .form-buttons {
    margin-top: 30px;
}

.info-form .prev-button, .info-form .submit-button {
    width: 80px; /* 버튼 너비 조정 */
    height: 36px; /* 버튼 높이 조정 */
    font-size: 16px; /* 폰트 사이즈 조정 */
    cursor: pointer;
    border: none; /* 테두리 제거 */
    border-radius: 4px; /* 모서리 둥글게 */
}

.info-form .prev-button {
    background: #eee;
    color: #333;
}

.info-form .submit-button {
    background: #e74c3c;
    color: #fff;
}

.cancel-button, .next-button {
    width: 80px; 
    height: 36px; 
    border: none; 
    border-radius: 4px; 
    font-size: 16px; 
    cursor: pointer;
}

.cancel-button { 
    background: #eee; 
    color: #333; 
}

.next-button { 
    background: #e74c3c; 
    color: #fff; 
    position: relative; 
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 24px;
    margin-bottom: 24px;
} 