* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:link {
    color: #333436;
}

a:visited {
    color: #333436;
}

input {
    width: 100%;
    height: 44px;
    padding: 12px 16px 12px 48px;
    border: 1px solid #D1D2D4;
    border-radius: 10px;
    background: #FFFFFF;
    color: #333436;
    font-family: Pretendard;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    outline: none;
}

.input::placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;

    color: #ACAEB0;
}

.input:focus {
    box-shadow: 0 0 0 3px #93BBF659;
    background: #FFFFFF;
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
}

.input:hover:not(:focus) {
    background: #FFFFFF;
    border-color: #838486;
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
}

.inputForm {
    width: 100%;
}

.inputArea {
    width: 100%;
    margin-top: 36px;
}

.inputArea div:first-child {
    margin-top: 0;
}

.boxWrapper {
    position: relative;
    width: 100%;
    margin-top: 16px;
}

.boxImageIcon {
    position: absolute;
    top: 12px;
    left: 16px;
}

body {
    font-family: Pretendard;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;

    width: 100%;
    height: 44px;

    background: #333436;
    border-radius: 6px;
    border: none;

    font-family: Pretendard;
    /*body 2 semibold*/
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;

    cursor: pointer;
}

.submit:hover {
    background: #18191B;
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
}

.cancel {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;

    width: 100%;
    height: 44px;

    background: #E8EBED;
    border-radius: 6px;
    border: none;

    font-family: Pretendard;
    /*body 2 semibold*/
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #333436;

    cursor: pointer;
}

.cancel:hover {
    background: #DFE0E2;
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 13px;

    width: 420px;
    height: 56px;

    background: #F5F5F8;
    border-radius: 10px;
    border: none;

    font-family: Pretendard;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #262E3D;
}

.container {
    width: 100%;
    height: 100%;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contentWrapper {
    padding: 100px 48px;
    width: 100%;
    height: 100%;
    max-width: 696px;
    display: flex;
    justify-content: center;
}

.contentWrapper-hrp {
}

.content {
    width: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.logoImage {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.verticalDivider {
    width: 1px;
    height: 420px;
    margin-left: 56px;
    margin-right: 160px;
    background-color: #D3D6E0;
}

.horizontalDivider {
    margin: 32px 0;
    width: 100%;
    height: 1px;
    background-size: 4px 1px;
    background-image: linear-gradient(to right, transparent 50%, white 50%), linear-gradient(to right, #D1D2D4, #D1D2D4);

}

.titleArea {
    width: 100%;
}

.title {
    font-family: Pretendard;
    width: 100%;
    min-height: 32px;
    /* body*/
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #333436;
}

.title > p {
    display: flex;
}

.subtitle {
    width: 100%;
    min-height: 20px;
    /* body 2 medium*/
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #838486;
    margin-top: 12px;
}

.subtitle > p {
    word-break: keep-all;
}

.error {
    display: flex;
    width: 100%;
    padding: 12px 16px 12px 16px;
    border-radius: 6px;
    background: #FFE7E5;
    color: #FD493F;
    font-family: Pretendard;
    /*body 2 medium*/
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    outline: none;
}

.errorImageIcon {
    margin-right: 12px;
}

/* spinner */
.spinner {
    position: relative;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 2px solid #333436;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 50%;
    animation: nk-spinner .7s infinite linear;
}

.spinner-gray {
    position: relative;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 2px solid #FFFFFF;
    border-top: 2px solid #838486;
    border-left: 2px solid #838486;
    border-bottom: 2px solid #838486;
    border-radius: 50%;
    animation: nk-spinner .7s infinite linear;
}

.spinnerButton {
    display: none;
    justify-content: center;
    cursor: default;
}

.description {
    display:flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    line-height: 20px;
    font-size: 14px;
    color: #333436;
    transform: rotate(0.04deg);
    gap: 4px;
}

.ruleText {
    margin-left: 4px;
}

.tooltip {
    position: relative;
    margin-top: 24px;
}

.tooltip-content {
    position: absolute;
    display: none;
    top: -210px;
    left: -150px;
}

.tooltip:hover .tooltip-content {
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
    display: block;
}

.tooltip-triangle {
    margin-left: 112px;
    width: 0;
    height: 0;
    border-bottom:10px solid #F5F5F8;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}


.tooltip-text {
    padding: 12px 16px 12px 36px;

    width: 424px;
    border-radius: 20px;
    color: #FFFFFF;
    background: #333436;

    /* body 2 medium*/
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.emailArea {
    width: 100%;
    margin-top: 32px;
    padding: 24px;
    border:1px solid #D1D2D4;
    border-radius: 6px;
    background-color: #FFFFFF;
    text-align: center;

    /* shadow2 */
    box-shadow: 0 2px 4px -2px rgba(16, 24, 40, 0.06), 0 4px 8px -2px rgba(16, 24, 40, 0.10);
}

.emailBadge {
    padding: 2px 8px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #838486;
    border: 1px solid #DFE0E2;
    border-radius: 16px;
    background-color: #F7F7F7;
}

.emailText {
    height: 24px;
    margin-top: 8px;
    color: #333436;

    /*body 1 medium*/
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.emailText + .emailText {
    margin-top: 0;
}

@keyframes nk-spinner {
    100% {
        transform: rotate(360deg)
    }
}


@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-display: swap;
    src: local('Pretendard Black'), url('/asset/font/pretendard/woff2-subset/Pretendard-Black.subset-2f62ac13d6f798d655f1afd1bb3fe909.woff2') format('woff2'), url('/asset/font/pretendard/woff-subset/Pretendard-Black.subset-43ae46ff9875ab8ffc0b704cac174f85.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-display: swap;
    src: local('Pretendard ExtraBold'), url('/asset/font/pretendard/woff2-subset/Pretendard-ExtraBold.subset-9be6a44600c01831ddf8700fd5d0cceb.woff2') format('woff2'), url('/asset/font/pretendard/woff-subset/Pretendard-ExtraBold.subset-9405b025d4f081c910b9e152af12a2ad.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-display: swap;
    src: local('Pretendard Bold'), url('/asset/font/pretendard/woff2-subset/Pretendard-Bold.subset-dcfc7a0f439d3b7827c8dad85e3e4957.woff2') format('woff2'), url('/asset/font/pretendard/woff-subset/Pretendard-Bold.subset-eb09607287307c2c5989bfeb142856ac.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-display: swap;
    src: local('Pretendard SemiBold'), url('/asset/font/pretendard/woff2-subset/Pretendard-SemiBold.subset-3d0fbeb4b4f3c103c871fa13723b7130.woff2') format('woff2'), url('/asset/font/pretendard/woff-subset/Pretendard-SemiBold.subset-5f1b8d1d6c6fbf041ebb5995df675aab.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-display: swap;
    src: local('Pretendard Medium'), url('/asset/font/pretendard/woff2-subset/Pretendard-Medium.subset-e022229f0bfee604e0869e6dd9be16ad.woff2') format('woff2'), url('/asset/font/pretendard/woff-subset/Pretendard-Medium.subset-ae73a7f219e990e474d6f5cca4178dfb.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-display: swap;
    src: local('Pretendard Regular'), url('/asset/font/pretendard/woff2-subset/Pretendard-Regular.subset-11e278f4d434e848694c639a2e925bc5.woff2') format('woff2'), url('/asset/font/pretendard/woff-subset/Pretendard-Regular.subset-f0c476dfce0aa4227cd9bd9e245739b4.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-display: swap;
    src: local('Pretendard Light'), url('/asset/font/pretendard/woff2-subset/Pretendard-Light.subset-8ce8dd0508f2fd89a7d8436e2d8e1166.woff2') format('woff2'), url('/asset/font/pretendard/woff-subset/Pretendard-Light.subset-1b4d7edf0fe1a62088a6caaf37dbb167.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    font-display: swap;
    src: local('Pretendard ExtraLight'), url('/asset/font/pretendard/woff2-subset/Pretendard-ExtraLight.subset-ea78943ba6eb32276f920a9717fa69bd.woff2') format('woff2'), url('/asset/font/pretendard/woff-subset/Pretendard-ExtraLight.subset-d5868dfbe13de881454cca8b94ff4911.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    font-display: swap;
    src: local('Pretendard Thin'), url('/asset/font/pretendard/woff2-subset/Pretendard-Thin.subset-ca85fcae1a3dbcc62a40c78d76305980.woff2') format('woff2'), url('/asset/font/pretendard/woff-subset/Pretendard-Thin.subset-bcbfeaa64d5ba0c5dfc4aa69155660ad.woff') format('woff');
}

@media (max-width: 1279px) {
    .contentWrapper {
        max-width: 536px;
    }
}

@media (max-width: 1000px) {
    .container {
        padding: 0;
        flex-direction: column-reverse;
    }

    .contentWrapper {
        max-width: 100%;
        padding: 16px;
    }

    .content {
        width: 100%;
        justify-content: normal;
    }

    .logoImage {
        min-height: 426px;
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .logoImage {
        min-height: 294px;
    }
}
