/* reset */
        html,
        body {
            position: relative;
            height: 100%;
            -webkit-font-smoothing: antialiased;
            -webkit-overflow-scrolling: touch;
        }

        body {
            color: inherit;
            font-family: 'Noto Sans Display', sans-serif;
            word-wrap: break-word;
            word-break: keep-all;
            -webkit-text-size-adjust: none;
        }

        body * {
            box-sizing: border-box;
        }

        body,
        div,
        dl,
        dt,
        dd,
        ul,
        ol,
        li,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        pre,
        form,
        fieldset,
        input,
        textarea,
        blockquote,
        th,
        td,
        p,
        button {
            margin: 0;
            padding: 0;
        }

        /* HTML5 display-role reset for older browsers */
        article,
        aside,
        details,
        figcaption,
        figure,
        footer,
        header,
        hgroup,
        menu,
        nav,
        section,
        summary {
            display: block;
        }

        audio,
        canvas,
        video {
            display: inline-block;
        }

        ol,
        ul,
        li {
            list-style: none;
        }

        blockquote,
        q {
            quotes: none;
        }

        blockquote:before,
        blockquote:after,
        q:before,
        q:after {
            content: '';
            content: none;
        }

        table {
            table-layout: fixed;
            width: 100%;
            border-collapse: collapse;
            border-spacing: 0
        }

        fieldset,
        img,
        abbr,
        acronym {
            border: 0
        }

        img {
            max-width: 100%;
            vertical-align: top;
        }

        i,
        em,
        address {
            font-style: normal;
        }

        a {
            color: inherit;
            text-decoration: none;
            word-break: break-all;
        }

        caption,
        legend {
            width: 0;
            height: 0;
            text-indent: -9999em;
            overflow: hidden;
            font-size: 0;
        }

        label,
        button {
            cursor: pointer;
            vertical-align: middle;
        }

        input,
        textarea,
        select,
        button {
            margin: 0;
            padding: 0;
            color: inherit;
            font-size: 12px;
            font-weight: 400;
            font-family: 'Noto Sans KR', sans-serif;
            vertical-align: middle;
        }

        input:-webkit-autofill {
            -webkit-box-shadow: 0 0 0px 1000px white inset;
        }

        input::-webkit-input-placeholder {
            color: inherit;
        }

        input::-moz-input-placeholder {
            color: inherit;
        }

        input:-ms-input-placeholder {
            color: inherit;
        }

        textarea {
            border: 1px solid #666;
            resize: none;
            overflow-y: auto;
        }

        button {
            overflow: visible;
            border: 0 none;
            background: none;
            vertical-align: top;
            cursor: pointer;
        }

        button::-moz-focus-inner,
        input::-moz-focus-inner {
            border: 0;
            padding: 0;
        }

        .breadcrumb {
            border-bottom: none;
        }

        /* global */
        .none {
            display: none;
        }

        .hidden {
            position: absolute;
            top: 0;
            left: -9999px;
            width: 0;
            height: 0;
            font-size: 0;
            line-height: 0;
            text-indent: -9999px;
            overflow: hidden;
        }

        .fl {
            float: left;
        }

        .fr {
            float: right;
        }

        .left {
            text-align: left !important;
        }

        .center {
            text-align: center !important;
        }

        .right {
            text-align: right !important;
        }

        .block {
            display: block;
        }

        .inblock {
            display: inline-block;
        }

        .clear:after {
            content: "";
            display: block;
            clear: both;
        }

        .ellipsis {
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .bold {
            font-weight: bold !important;
        }

        /* 건너뛰기 네비게이션 */
        #skip_nav {
            width: 100%;
            height: 0;
            text-align: center;
            overflow: hidden;
        }

        #skip_nav a {
            color: #fff;
            font-size: 16px;
            line-height: 30px;
            font-weight: 800;
            float: left;
        }

        #skip_nav a:focus,
        #skip_nav a:hover,
        #skip_nav a:active {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 30px;
            text-decoration: underline;
            background-color: #000;
            overflow: visible;
            z-index: 9999;
        }


        /* style */


        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f9f9f9;
        }

        .wrap {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            height: 100%;
            padding-top: 20px;
            overflow-y: auto;
        }

        /* .container {background: #fff; width: 80%; max-width: 350px; padding: 24px; border-radius: 5px; box-shadow: 8px 12px 10px #d9d9d9; display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 100px; padding-top: 5vh;} */
        .container {
            background: #fff;
            width: 90%;
            max-width: 350px;
            padding: 24px;
            border-radius: 5px;
            box-shadow: 8px 12px 10px #d9d9d9;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .container .top .icon-area {
            width: 68px;
            height: 68px;
            margin: 0 auto;
            margin-bottom: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container .top .icon-area img {
            width: 100%;
            display: block;
            margin: auto;
        }

        /* .container .top h1 {text-align: center;} */
        .container .top h1 {
            text-align: center;
            margin: 0;
            font-size: 1.8rem;
        }

        .container .top p {
            text-align: center;
        }

        .dot-container {
            position: relative;
            width: 10px;
            height: 10px;
            display: inline-block;
            vertical-align: middle;
        }

        .dot {
            position: absolute;
            border-radius: 50%;
        }

        /* 바깥 원 (outer dot) */
        .dot.outer {
            width: 10px;
            height: 10px;
            background-color: #1D8399;
        }

        /* 안쪽 원 (inner dot) */
        .dot.inner {
            width: 4px;
            height: 4px;
            background-color: #fff;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .sub-tit-area p {
            display: inline-block;
            margin-left: 8px;
            vertical-align: middle;
            font-size: 14px;
        }

        .l-button {
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            white-space: nowrap;
            height: 4.6rem;
            padding: 15px;
        }

        .m-button {
            font-size: 1.25rem;
            font-weight: 700;
            text-align: center;
            white-space: nowrap;
            height: 3rem;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 300px;
        }

        .solid {
            background: linear-gradient(0.25turn, #ddf1f6, #daf2fd, #e8faff);
            border: 0.5px solid #1E5D70;
            border-image: linear-gradient(0.25turn, #a5c4cc, #b5e9fe, #a5c4cc);
            border-image-slice: 1;
            color: #1E5D70;
        }

        .inp-area {
            margin-bottom: 10px;
        }

        .inp-area>input {
            margin-top: 10px;
        }

        .input-wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 8px;
        }

        .input-wrapper .label {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: inherit;
            pointer-events: none;
            line-height: 1;
        }

        .input-wrapper input {
            height: 2.875rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1.6rem;
            padding-top: 24px;
            padding-bottom: 24px;
            padding-left: 120px;
            /* !! padding-left는 아이디 |와 입력내용의 간격 없어지면 겹쳐진 것 처럼 보임 */
            display: flex;
            align-items: center;
            width: 300px;
        }

        /* .container .top {margin-bottom: 42px;} */
        .container .top {
            background: #fff;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .reset-pw-area .sub-tit-area {
            margin-top: 42px;
        }

        .reset-pw-area .txt-area p {
            margin-bottom: 8px;
            padding-left: 18px;
        }

        .reset-pw-area .sub-tit-area p {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .reset-pin-area .sub-tit-area {
            margin-top: 42px;
        }

        .reset-pin-area .txt-area p {
            margin-bottom: 8px;
            padding-left: 18px;
        }

        .reset-pin-area .sub-tit-area p {
            font-size: 1.2rem;
            font-weight: 700;
        }

        /* .ss-area .sub-tit-area {margin-top: 42px;} */
        .ss-area .sub-tit-area {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 42px;
        }

        .ss-area .sub-tit-area p,
        .ss-area .sub-tit-area span.value {
            margin: 0;
            font-size: 14px;
        }

        .ss-area .sub-tit-area span.value {
            font-size: 19.2px;
            display: flex;
            align-items: center;
        }

        .ss-area .sub-tit-area:nth-child(2) {
            margin-top: 0px;
            margin-bottom: 8px;
        }

        .ss-area .sub-tit-area p {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .ss-area .input-area .input-wrapper span {
            display: flex;
            justify-content: end;
            width: 270px;
        }

        .ss-area .input-area .input-wrapper input {
            padding-right: 42px;
            text-align: right;
        }

        button {
            width: 300px;
        }

        @media (max-width: 420px) {

            /* .wrap {padding-top: 68vh;} */
            .container {
                width: 95%;
            }

            .wrap {
                padding: 0;
            }

            .input-wrapper input {
                width: 100%;
            }

            .solid {
                width: 100%;
            }

            .ss-area .input-area .input-wrapper span {
                width: 90%;
            }
        }