@charset "utf-8";

/* 공통레이아웃 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
html {
    font-size: 62.5%;
    height: 100%;
}
a {
    text-decoration: none;
    color: #000;
}
ul,
ol,
li {
    list-style: none;
}
table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}
address,
cite,
code,
em {
    font-style: normal;
    font-weight: normal;
}
label,
img,
input,
select,
textarea,
button,
a,
svg {
    vertical-align: middle;
}
button {
    border: none;
    outline: none;
    background-color: transparent;
}
button:hover,
input[type='checkbox']:hover,
select:hover,
input[type='file']:hover {
    cursor: pointer;
}
fieldset,
img {
    border: 0 none;
}
input:focus,
select:focus,
option:focus,
textarea:focus,
button:focus {
    outline: none;
}
:lang(en),
:lang(ko) {
    word-break: keep-all;
    word-wrap: break-word;
}

/* 폰트 */
/* font-family: 'Noto Sans KR', sans-serif; */

body {
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -1px;
    font-size: 1.6rem;
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    /* height: auto; */
    line-height: 1;
    vertical-align: baseline;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}
.wrapper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    font-weight: 500;
}

/* --- index 공통요소 --- */
.title {
    font-family: 'Noto Sans KR';
    font-size: 3.2rem;
}
.white {
    color: #fff;
}
.black {
    color: #1c1c1c;
}
.bold {
    font-weight: 700;
}
.medium {
    font-weight: 500;
}
.light {
    font-weight: 300;
}
.regular {
    font-weight: 400;
}
label,
button,
a {
    cursor: pointer;
}

/* --------------main-------------- */
.wrapper {
    background-color: #f8f8f8;
    height: 100vh;
    overflow: auto;
}
.header {
    height: 65px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}
.header .inner {
    max-width: 1440px;
    margin: 0 auto;
    line-height: 65px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 3rem;
}
.header .logo {
    width: 140px;
}
.header .logo img {
    width: 100%;
    padding-bottom: 5px;
}
.header .title {
    font-size: 1.8rem;
}
.container {
    text-align: left;
    width: 500px;
    max-width: 100%;
    padding: 40px;
    border-radius: 6px;
    border: 1px solid #e0e4ed;
    background-color: #fff;
    margin: 30px auto;
}
.container h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}
.form-box {
    margin: 24px 0 15px;
}
.form-box input {
    height: 50px;
    padding: 15px 12px;
    border-radius: 4px;
    width: 100%;
    border: 1px solid #e0e4ed;
}
input::placeholder {
    color: #c0c3cb;
    letter-spacing: -0.5px;
    /* font-weight: 500; */
}
.form-box input:focus {
    border: 2px solid #55c4e6;
}
.form-check {
    margin-right: 2.2vw;
    display: inline-block;
    color: #333;
    font-size: 1.2rem;
    line-height: 16px;
}
input[type='checkbox'] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.form-check label {
    display: inline-block;
    position: relative;
}
.form-check label::before {
    top: 1.5px;
    width: 14px;
    height: 14px;
    border: 1.6px solid #ced1d7;
    position: absolute;
    content: '';
    background-color: #fff;
    cursor: pointer;
    border-radius: 2px;
}
input[type='checkbox']:checked + label:before {
    border: 0;
}
.form-check label::after {
    left: 0;
    top: 1.5px;
    width: 16px;
    height: 16px;
    background-size: 100%;
    background-position: 50%;
}
input[type='checkbox']:checked + label:after {
    background: url(../images/check-blue.png) no-repeat;
    position: absolute;
    content: '';
}
.form-check label span {
    padding-left: 22px;
    line-height: 18px;
    font-weight: 500;
    font-size: 1.4rem;
    color: #606060;
}
#login_btn {
    width: 100%;
    text-align: center;
    margin: 45px 0 20px;
    line-height: 30px;
    padding: 10px;
    font-weight: 500;
    font-size: 1.8rem;
}
#login_btn:disabled {
    border-radius: 6px;
    color: #fff;
    background-color: #aee2f3;
}
#login_btn:enabled {
    border-radius: 6px;
    color: #fff;
    background-color: #55c4e6;
}
.error {
    display: none;
}
.error-msg {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    visibility: hidden;
    color: #ff5c48;
}
.sign-up {
    margin-top: 15px;
    text-align: center;
}
.sign-up p {
    display: inline-block;
    font-size: 1.45rem;
    color: #333;
    margin-right: 5px;
}
.sign-up a {
    font-size: 1.45rem;
    font-weight: 600;
    text-decoration: underline;
}

/* --------------index.html #page1-------------- */
#page1 .container {
    width: 1024px;
}
.info-form .info {
    margin-top: 2rem;
}
.info-form .info .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
}
.info .top .nm {
    width: 30%;
}
.info .top .ad {
    width: 68%;
}
.info input {
    width: 100%;
    height: 32px;
    margin-top: 8px;
}
.info .bt input {
    height: 65px;
}

/* .button-form */
.button-form {
    margin-top: 3.5rem;
}
.button-form div {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
}
.button-form div button {
    width: calc(100% / 4 - 10px);
    height: 50px;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: 600;
}
.button-form .top button {
    background-color: #f8f8f8;
}
.button-form .top button:first-child {
    border: 2px solid #1db8a3;
}
.button-form .top button:first-child:hover,
.button-form .top .button:first-child.active {
    background-color: #1db8a3;
    color: #fff;
}
.button-form .top button:nth-child(2n) {
    border: 2px solid #4389c3;
}
.button-form .top button:nth-child(2n):hover,
.button-form .top .button:nth-child(2n).active {
    background-color: #4389c3;
    color: #fff;
}
.button-form .top button:nth-child(3n) {
    border: 2px solid #ea6060;
}
.button-form .top button:nth-child(3n):hover,
.button-form .top .button:nth-child(3n).active {
    background-color: #ea6060;
    color: #fff;
}
.button-form .top button:last-child {
    border: 2px solid #333;
}
.button-form .bt button {
    background-color: #e5e5e5;
}
.button-form .bt button:hover,
.button-form .top button:last-child:hover,
.button-form .top .button:last-child.active {
    background-color: #333;
    color: #fff;
}
.button-form .bt .button.active {
    background-color: #333;
    color: #fff;
}

/* footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4.2rem;
}
.footer button {
    /* width: 20%; */
    background-color: #55c4e6;
    height: 100px;
    border-radius: 5px;
}
.footer button span {
    padding: 0 2.5rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
}
.footer textarea {
    width: 78%;
    height: 100px;
    padding: 8px;
}

/* (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .wrapper {
        background-color: #fff;
    }
    .container {
        border: none;
        margin: 3.5rem auto;
    }
    .header .inner .title {
        display: none;
    }
    .footer button {
        width: 20%;
    }
    .footer button span {
        padding: 0;
    }
}
/* (max-width: 760px) */
@media screen and (max-width: 760px) {
    .footer button {
        width: 24%;
    }
    .footer button span {
        font-size: 1.7rem;
    }
    .footer textarea {
        width: 75%;
    }
}
/* (max-width: 640px) */
@media screen and (max-width: 640px) {
    .header .inner {
        padding: 0 2rem;
    }
    .container {
        margin: 2rem auto;
        padding: 40px 20px;
    }
    .button-form div {
        margin-bottom: 1.4rem;
    }
    .button-form div button {
        width: calc(100% / 4 - 4px);
        font-size: 1.65rem;
    }
    .footer {
        margin-top: 3.6rem;
    }
    .footer button {
        width: 28%;
    }
    .footer button span {
        font-size: 1.6rem;
    }
    .footer textarea {
        width: 70%;
    }
}
/* (max-width: 460px) */
@media screen and (max-width: 460px) {
    .header .inner {
        padding: 0 1.4rem;
    }
    .container {
        padding: 3rem 1.4rem;
    }
    .container h1 {
        font-size: 2rem;
    }
    .info label {
        font-size: 1.5rem;
    }
    .button-form {
        margin-top: 3rem;
    }
    .button-form div {
        margin-bottom: 1rem;
    }
    .button-form div button {
        font-size: 1.4rem;
        height: 44px;
    }
    .footer {
        margin-top: 3.2rem;
    }
    .footer button {
        width: 32%;
    }
    .footer button span {
        font-size: 1.45rem;
    }
    .footer textarea {
        width: 65%;
    }
}
