
/* Reset */
html, body, h1, h2, h3, h4, h5, h6, div, p, blockquote, pre, code, address, ul, ol, li, nav, section, article, header, footer, main, aside, dl, dt, dd, table, thead, tbody, tfoot, label, caption, th, td, form, fieldset, legend, hr, input, button, textarea, object, figure, figcaption {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none;
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
}

body, input, select, textarea, button, img, fieldset {
    border: none;
    font-size: 16px;
    color: #171717;
    line-height: 1.5;
    word-break: break-word;
    word-wrap: break-word;
    letter-spacing: 0.2px;
}

body{
    overflow-x: hidden;
}

ul, ol, li {
    list-style: none;
}

table {
    table-layout:auto !important;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

address, cite, code, em, i {
    font-style: normal;
    font-weight: normal;
}

label, img, input, select, textarea, button, a, iframe {
    vertical-align: middle;
}

u, ins, a {
    text-decoration: none;
}

button, a.button {
    cursor: pointer;
    background-color: transparent;
    white-space: nowrap;
}

select {
    appearance: none;
    outline: none !important;
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}


input[type="number"] {
    -moz-appearance: textfield;
}

input[type="search"],
input[type="number"],
input[type="text"],
input[type="password"],
input[type="url"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; /* -webkit-border-radius: 0 */;
    outline: 0;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 150px;
    margin-bottom: 20px;
}

input[type="date"] {
    -webkit-appearance: textfield;
    appearance: textfield;
}


input[type="text"],
input[type="number"],
input[type="password"],
input[type="file"] {
    min-width: 150px;
    width: 100%;
    height: 56px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #D5D7DB;
    background: #FFF;
    flex: 1;
    font-size:20px;
}

textarea{
    padding: 10px 20px;
    font-size:20px;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}
@media (max-width: 1024px) {
    input[type="text"],
    input[type="number"],
    input[type="password"],
    input[type="file"],textarea {
        font-size:18px;
    }

}

@media (max-width: 768px) {
    input[type="text"],
    input[type="number"],
    input[type="password"],
    input[type="file"],textarea {
        font-size:16px;
    }

}