/* registerForm.css */
body {
    background-color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
  }

  .container {
    max-width: 900px; 
    margin: 0 auto;
  }
  
  .signup-title {
    font-weight: bold;
    border-bottom: 2px solid #333;
    padding-bottom: 8px;
    margin-bottom: 30px;
  }
  
  .section-title {
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
    border-left: 4px solid #c0392b;
    padding-left: 10px;
  }
  
  th {
    background-color: #f8f9fa;
    text-align: left;
    width: 180px;
    vertical-align: middle;
    font-weight: 500;
  }
  
  td {
    vertical-align: middle;
  }
  
  input.form-control,
  select.form-select {
    max-width: 400px;
  }
  
  .btn-outline-secondary {
    font-size: 14px;
    padding: 4px 12px;
  }
  
  .btn-danger {
    background-color: #c0392b;
    border-color: #c0392b;
  }
  
  .btn-danger:hover {
    background-color: #a93226;
    border-color: #a93226;
  }

  /* 버튼 공통 스타일 */
.btn-custom {
  width: 120px;
  height: 45px;
  font-size: 16px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.5;
}

/* 테두리 있는 버튼 (ex. 취소, 모두 동의) */
.btn-outline-danger {
  background-color: #fff;
  color: #c0392b;
  border: 1px solid #c0392b;
}

.btn-outline-danger:hover {
  background-color: #f9eaea;
  color: #a93226;
  border-color: #a93226;
}

/* 배경 빨간색 버튼 (ex. 입력완료, 다음) */
.btn-danger {
  background-color: #c0392b;
  color: #fff;
  border: 1px solid #c0392b;
}

.btn-danger:hover {
  background-color: #a93226;
  border-color: #a93226;
}

  
  label {
    margin-right: 10px;
    font-weight: 400;
  }
  
  img[alt="보안문자"] {
    height: 38px;
    vertical-align: middle;
  }
  
  @media (max-width: 768px) {
    th, td {
      display: block;
      width: 100%;
    }
    input.form-control,
    select.form-select {
      width: 100%;
    }
    .btn-outline-secondary,
    .btn-danger {
      width: 100%;
      margin-top: 8px;
    }
   
  }
