/* reset.css */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
html {
    scroll-behavior: smooth;
}

body {
    overflow-x:scroll;
    background: var(--color-white);
    color: var(--color-dark);

    line-height: 1.6;
    font-family: 'Pretendard', sans-serif;


}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding:1rem;
    border: 1px solid var(--color-gray-500);
    background: var(--color-white);
    border-radius: var(--radius-md);
    transition: border-color .2s;
}

/* 포커스 */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #555;
}

/* textarea 기본 */
textarea {
    resize: vertical;
}

/* checkbox / radio 안정 스타일 */
input[type="checkbox"],
input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 4px;
}

/* form 그룹 간격 */
.form-group {
    margin-bottom: 18px;
}

*{box-sizing: border-box;}

