/* =============================
   SIGNUP PAGE STYLES (signup.html 구조 기반)
============================= */

/* 안내문 박스 */
.signup-info {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

/* form-group 공통 */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
}

/* 인풋 스타일 */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 48px;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
    background: #ffffff;
}

/* 인라인 구조 (아이디/닉네임/전화번호 중복확인) */
.input-inline {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-inline input {
    flex: 1;
    height: 48px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
}

/* 중복확인 버튼 */
.check-btn {
    white-space: nowrap;
    height: 48px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
}

.check-btn:hover {
    background: #e2e8f0;
}

/* 하단 체크 메시지 */
.check-msg {
    font-size: 0.85rem;
    margin-top: 4px;
    color: #6b7280;
}

/* 정보 안내 */
.form-desc {
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #64748b;
}

/* 에러 리스트 (alert 메시지용) */
.error-item {
    font-size: 0.9rem;
    color: #b91c1c;
    margin-bottom: 6px;
}

/* 성별/4D checkbox list */
.checkbox-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

/* 사업자 영역 제목 */
.divider-title {
    margin-top: 28px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 6px;
    margin-bottom: 16px;
}

/* 업로드 영역 */
#business-upload input {
    height: auto !important;
}

/* 가입 버튼은 auth.css의 auth-submit 사용 */
/* SIGNUP FORM 중앙 정렬 */
.auth-container {
    width: 100%;
    max-width: 480px;
    margin: 40px auto;
}
