* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: #2e2e2e;
  color: #333;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  color: inherit;
  background: none;
  outline: none;
}

input:focus {
  outline: none;
  border-color: var(--main-color) !important;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: url("/_asset/influencerInsight/images/common/checkbox-off.svg")
    no-repeat center center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

input[type="checkbox"]:checked {
  border-color: black;
  position: relative;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 14px;
  height: 14px;
  background: url("/_asset/influencerInsight/images/common/checkbox.svg")
    no-repeat center center;
}

input::placeholder {
  color: var(--placeholder-color);
}

button {
  cursor: pointer;
  background-color: transparent;
}

button[type="submit"] {
  width: 100%;
  padding: 16px;
  background: var(--main-color);
  color: var(--white-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
}

button[type="confirm"] {
  width: 100%;
  padding: 16px;
  font-weight: 600;
  background: var(--main-color);
  color: var(--white-color);
  border: none;
  border-radius: 8px;
}

button[type="outline"] {
  border-radius: 8px;
  padding: 16px 32px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background: var(--white-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}
