*{
    letter-spacing: -0.01em;
}
html{
    background: #F8F8F8;
}
html, body{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    -webkit-text-size-adjust : none;  /* 크롬, 사파리, 오페라 신버전 */
    -ms-text-size-adjust : none;  /* IE */
    -moz-text-size-adjust : none;  /* 파이어폭스 */
    -o-text-size-adjust : none;  /* 오페라 구버전 */
    color: #083235;
    overflow-x: hidden;
}
body{
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border-right: 1px solid #ECEDED;
    border-left: 1px solid #ECEDED;
}
main{
    margin-top: 80px;
    padding-bottom: 64px;
}
section{
    margin-top: 32px;
    margin-bottom: 12px;
}
a:link,
a:visited,
a:active,
a:hover{
    text-decoration: none;
    color: #083235;
}
.inner{
    width: calc(100% - 80px);
    padding: 0 40px;
    margin: 0 auto;
}
b{
    font-weight: bold;
}

/* header */
header{
    max-width: 720px;
    width: 100%;
    border: 0;
    position: fixed;
    overflow: initial;
    border-bottom: 1px solid #000000;
    z-index: 2;
    background: #00704A;
}
header .header_inner{
    position: relative;
    width: calc(100% - 80px);
    height: 80px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header_inner .name{
    font-size: 18px;
    font-weight: 500;
    margin-right: 40px;
    color: #fff;
}
header .header_inner .logo_wrap{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
header .header_inner .logo_wrap img{
    width: 120px;
    height: auto;
}
nav .navbar_btn{
    display: block;
    position: absolute;
    top: 30px;
    right: 40px;
    cursor: pointer;
}
nav .navbar_btn .menu_off{
    position: fixed;
    margin-left: -20px;
}
nav{
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    background: #fff;
    z-index: 9;
}
.navbar_menu{
    display: none;
}
.navbar_menu.active{
    position: fixed;
    right: 0;
    top: 0;
    display: block;
    width: 300px;
    height: 100vh;
    overflow: auto;
    background: #fff;
    margin-right: calc((100% - 720px)/2);
    border-left: 1px solid #ECEDED;
}
nav .navbar_menu li{
    padding: 16px 24px;
}
nav .navbar_menu li:first-child{
    margin-top: 64px;
}
nav .navbar_menu li a.active{
    font-size: 20px;
    color: #12C79B;
}


/* input */
input[type="text"]{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 16px;
    width: calc(100% - 54px);
    padding: 0 24px;
    height: 64px;
    border: 1px solid #5a5d5d;
    border-radius: 24px;
    background: #fff;
    color: #000;
    margin-bottom: 16px;
}
input[type="password"]{
    font: small-caption;
    font-size: 16px;
    width: calc(100% - 54px);
    padding: 0 24px;
    height: 64px;
    border: 1px solid #5a5d5d;
    border-radius: 24px;
    background: #fff;
    color: #000;
    margin-bottom: 40px;
}
input[type="text"]::placeholder,
input[type="password"]::placeholder{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: #B2B5B8;
}
input[type="text"]:focus,
input[type="password"]:focus{
    outline: none;
    border: 1px solid #12C79B;
    color: #12C79B;
}
input[type="button"]{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    background: #00704A;
    border-radius: 24px;
    height: 64px;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* below 1280 */
@media screen and (max-width: 1280px){

    input[type="text"],
    input[type="password"]{
        margin-bottom: 16px;
        height: 60px;
    }
    input[type="button"]{
        margin-top: 2px;
    }

}


/* below 720 */
@media screen and (max-width: 720px){

    main{
        margin-top: 44px;
        padding-bottom: 40px;
    }
    header .header_inner{
        width: calc(100% - 40px);
        height: 44px;
        padding: 0 20px;
        justify-content: flex-end;
    }
    header .header_inner .name{
        font-size: 14px;
        margin-right: 40px;
    }
    header .header_inner .logo_wrap{
        left: 20px;
        transform: none;
        transform: translateY(-50%);
    }
    header .header_inner .logo_wrap img{
        width: 90px;
        height: auto;
    }
    nav .navbar_btn{
        top: 11px;
        right: 20px;
    }
    .navbar_menu.active{
        margin: 0;
    }
    nav .navbar_menu li:first-child{
        margin-top: 44px;
    }

}


/* below 540 */
@media screen and (max-width: 540px){

    body{
        font-size: 16px;
    }
    .inner{
        width: calc(100% - 40px);
        padding: 0 20px;
    }
    section{
        margin-bottom: 24px;
    }


}