/* ============================================
   모던 CSS 리셋 - 법인설립지원센터 파트너스
   ============================================ */

/* 박스 사이징 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 기본 여백 제거 */
* {
  margin: 0;
  padding: 0;
}

/* HTML 기본 설정 */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* 바디 기본 설정 */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 미디어 요소 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 폼 요소 폰트 상속 */
input, button, textarea, select {
  font: inherit;
}

/* 텍스트 요소 줄바꿈 */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-break: keep-all;
}

/* 리스트 스타일 제거 */
ul, ol {
  list-style: none;
}

/* 링크 스타일 초기화 */
a {
  text-decoration: none;
  color: inherit;
}

/* 버튼 초기화 */
button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  line-height: inherit;
}

/* 테이블 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 수평선 */
hr {
  border: none;
  border-top: 1px solid currentColor;
}

/* fieldset */
fieldset {
  border: none;
}

/* 이미지 정렬 */
img {
  vertical-align: middle;
}

/* 인풋 포커스 아웃라인 */
:focus-visible {
  outline: 2px solid #3972DF;
  outline-offset: 2px;
}

/* 선택 색상 */
::selection {
  background-color: #E9EFFB;
  color: #07142C;
}

/* 스크롤바 (webkit) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #F2F4F7;
}

::-webkit-scrollbar-thumb {
  background: #B1BBC9;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #93A0B4;
}
