@import url(./color.css);
@import url(./font.css);

* {
    margin: 0;
    padding: 0;
    line-height: 1.4em;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    -webkit-hyphens: auto;
    hyphens: auto;
    font-family: 'Noto Sans KR', 'Meiryo','בהפק', 'Noto Sans', 'Dotum', 'Gulim', 'sans-serif';
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/*----------------------------------------------------------------*/

.btn {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    padding: 13px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.r-btn {
    background: var(--red-8);
    color: #fff;
}

.w-btn {
    background: #fff;
    color: #2f384d;
    border: solid 1px var(--gray-pale-4);
}

.f-input {
    margin: 0 0 12px 0;
}

    .f-input span.item {
        display: block;
        font-size: 16px;
        font-weight: 500;
        color: var(--gray-pale-7);
        margin: 32px 0 8px;
    }

/*----------------------------------------------------------------*/
