/* 상단 */
.register .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.register .header h1 {
  font-size: 26px;
  margin: 0;
  border-bottom: 2px solid #222;
  padding-bottom: 6px;
}

.register .breadcrumb {
  font-size: 13px;
  color: #999;
}

/* 단계 */
.register .step-box {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.register .step {
  flex: 1;
  border: 1px solid #f0f0f0;
  padding: 14px;
  text-align: center;
}

.register .step.active {
  border-color: #27c967;
  color: #008a50;
}

.register .step .num {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  background: #f0f0f0;
  font-size: 13px;
  margin-right: 6px;
  color: #666666;
  border-radius:6px; 
}

.register .step.active .num {
  background: #e9f8f1;
  color: #008a50;
}

.register .step.text {
  color: #ccc;
}

/* 섹션 */
.register .section h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.register .desc {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

/* 전체 동의 */
.register .all-check {
  padding: 14px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

/* 약관 박스 */
.register .agree-box {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.register .agree-title {
  display: flex;
  gap: 8px;
  align-items: center;   /* 핵심 */
  font-size: 14px;
}

.register .agree-content {
  margin-top: 12px;
  padding: 12px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.register .agree-content ul {
  padding-left: 18px;
}

/* 버튼 */
.register .btn-area {
  text-align: center;
  margin-top: 30px;
}

.register .btn-confirm {
  width: 120px;
  height: 42px;
  background: #39c26b;
  border: none;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
}

.register .join-wrap {
  width: 1000px;
  margin: 40px auto;
}

.register .join-table {
  width: 100%;
  border-top: 2px solid #333;
  border-collapse: collapse;
}

.register .join-table th,
.register .join-table td {
  border-bottom: 1px solid #e5e5e5;
  padding: 12px;
  text-align: left;
  vertical-align: middle;
}

.register .join-table th {
  width: 180px;
  background: #fafafa;
  font-size: 14px;
}

.register .req {
  color: red;
}

.register input, select {
  height: 32px;
  border: 1px solid #ccc;
  padding: 0 8px;
}

.register input[type="text"],
.register input[type="password"],
.register input[type="email"] {
  width: 260px;
}

.register .birth input,
.register .phone input {
  width: 80px;
  margin-right: 4px;
}

.register .btn-check {
  height: 32px;
  margin-left: 6px;
  padding: 0 10px;
  border: 1px solid #ccc;
  background: #eee;
  cursor: pointer;
}

.register .error {
  color: red;
  font-size: 12px;
  margin: 4px 0 0;
}

.register .btn-area {
  text-align: center;
  margin-top: 30px;
}

.register .btn-submit {
  width: 140px;
  height: 42px;
  background: #2ecc71;
  border: none;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.register .chk-label {
  display: flex;
  align-items: center;   /* 핵심 */
  gap: 6px;
}
