.register-container {
  max-width: 740px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 32px;
}

.register-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.register-social-wrap {
  margin-bottom: 26px;
}

.register-social-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  margin-bottom: 26px;
}

.register-social-title span {
  margin: 0 12px;
}

.register-social-title:before,
.register-social-title:after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #D9D9D9;
  margin: 0 10px;
}

.register-social-btns {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-bottom: 0;
}

.register-social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCFCFC;
  border: 1px solid #D9D9D9;
  cursor: pointer;
}

.register-social-btn:hover {
  box-shadow: 0 2px 8px rgba(164, 143, 212, 0.12);
}

.register-social-btn.oauth-clicked {
  border: 2px solid #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.register-section {
  margin-bottom: 50px;
}

.register-section-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 17px;
  color: #333;
}

.register-policy-box {
  background: #faf8fa;
  border: 1px solid #e0dbe6;
  border-radius: 8px;
  padding: 18px 18px 12px 18px;
  margin-bottom: 10px;
}

.register-policy-title {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #636363;
}

.register-policy-content {
  font-size: 14px;
  color: #636363;
}

.register-checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #636363;
  margin-top: 13px;
  gap: 10px;
}

.register-checkbox input[type="checkbox"] {
  display: inline-block;
  width: 15px;
  height: 15px;
  accent-color: var(--point-color);
  appearance: auto;
  -webkit-appearance: auto;
}

.register-table-wrap {
  margin: 15px 0 13px;
}

.register-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
  border: 1px solid #D9D9D9;
}

.register-table th,
.register-table td {
  border: none;
  padding: 10px 8px;
  text-align: center;
}

/* 가로줄(아래쪽)만 표시 */
.register-table th,
.register-table td {
  border-bottom: 1px solid #D9D9D9;
}

/* 마지막 행은 아래쪽 선 제거 */
.register-table tr:last-child th,
.register-table tr:last-child td {
  border-bottom: none;
}

/* 세로줄(오른쪽)만 표시 */
.register-table th:not(:last-child),
.register-table td:not(:last-child) {
  border-right: 1px solid #D9D9D9;
}

.register-table th {
  background: #f5f2fa;
  color: var(--point-color);
  font-weight: 600;
}

.register-table th:first-child {
  border-top-left-radius: 8px;
}
.register-table th:last-child {
  border-top-right-radius: 8px;
}
.register-table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}
.register-table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.register-all-agree {
  margin-bottom: 24px;
  margin-top: 8px;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 10px 0;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.register-all-agree .register-checkbox {
  margin-top: 0;
}

.register-btns {
  display: flex;
  gap: 25px;
  margin-top: 32px;
}

.register-cancel {
  flex: 1;
  background: #D9D9D9;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0;
  transition: background 0.3s, border 0.2s;
}

.register-cancel:hover {
  background: #c4c4c4;
}

.register-submit {
  flex: 1;
  background: var(--point-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0;
  transition: background 0.3s;
}

.register-submit:hover {
  background: var(--point-color-hover);
}

@media (max-width: 768px) {
  .register-container {
    padding: 32px 16px;
  }
}