html, body, body > .base-container {
    height: 100%;
}

body {
    background-color: #e1e1e1;
    height: 100%;
}

body > .base-container > .center-layout {
    padding: 0;
    width: 100%;
    height: 100%;
}

.newUserControl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.find-box {
    width: 600px;
    margin-bottom: 0;
    padding: 0 40px;
    margin-top: -110px;
}

.find-box .head {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.find-box .head .logo {
    width: 140px;
    padding: 30px 0;
}

.find-box .body {
    background-color: #fff;
    padding: 40px;
}

.find-box .body .title {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #3a2828;
}

.find-box .body .contents {
    color: #6f6f6f;
    font-size: 14px;
    margin-bottom: 40px;
}

.find-box .body .contents p {
    margin-bottom: 7px;
}

#findID, #findPW, .find-input {
    width: 100% !important;
    padding: 8px 0px 8px 15px !important;
    box-sizing: border-box !important;
    border: 1px solid #ced4da !important;
}

#findID::placeholder, #findPW::placeholder, .find-input::placeholder {
    color: #a7a7a7;
}

#findID {
    margin-bottom: 6px;
}

.find-box .input-box {
    margin-bottom: 4px !important;
}

.check-button {
    width: 100%;
    margin: 8px auto;
    margin-top: 30px;
    font-size: 13px;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 12px;
    border: none;
    border-radius: 5px;
}

.orange-text {
    color: #ff6c00;
}

.orange-button {
    background-color: #ff6c00 !important;
    padding: 12px !important;
}

.black-button {
    background-color: #413b3b;
}

#sent .body .contents {
    margin-bottom: 0;
}

.findResult .body .contents {
    margin-bottom: 0 !important;
}

.mt0 { margin-top: 0;}

.subAgreement {
    margin-top: 35px;
    color: #413b3b;
}

.subAgreement .subTitle {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
    border-bottom: 1px solid #393434;
}

.subAgreement .subContents {
    margin-top: 20px;
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 14px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
}

.subAgreement .subContents div {
    padding-bottom: 15px;
    display: flex;
}

.subAgreement .subContents div span:last-child {
    margin-left: auto;
}

.subAgreement .subBtn, .loginSub .subBtn  {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.subAgreement .subBtn .btnImg, .loginSub .subBtn .btnImg  {
    width: 20px;
    height: 20px;
    border: 1px solid #cecece;
    margin-right: 7px;
    border-radius: 12px;
    position: relative;
    top: 2px;
    box-sizing: border-box;
}

.subAgreement .subBtn .btnImg.checked, .loginSub .subBtn .btnImg.checked  {
    background-color: #413b3b;
    border: 0;
}

.subAgreement .subBtn .btnImg.checked::after, .loginSub .subBtn .btnImg.checked::after  {
    content: '';
    background: url('/assets/front/images/icon/userFormCheckOk.svg');
    background-size: 12px 9px;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subAgreement .btnImg:not(.checked)::after, .loginSub .btnImg:not(.checked)::after {
    content: '';
    background: url('/assets/front/images/icon/userFormCheck.svg');
    background-size: 12px 9px;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginSub {
    display: flex;
    font-size: 13px;
    margin-top: 15px;
}

.loginSub .subBtn .btnImg {
    top: 1px;
}

.loginSub .subFind {
    display: flex;
    align-items: center;
    margin-left: auto;
    color: #7a7a7a;
    cursor: pointer;
}

.loginSub .subFind div::after {
    content: '|';
    padding: 0 10px;
}

.loginSub .subFind div:last-child::after {
    content: '';
    padding: 0;
}

#loginForm {
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.viewTerms {
    font-size: 15px;
    text-decoration: underline;
    cursor: pointer;
}

.footer .pc-only {
    display: none;
}


@media screen and (max-width:1024px) {
    html, body, body > .base-container {
        height: auto;
    }

    .newUserControl {
        height: auto;
    }

    .find-box {
        padding: 0 15px;
        margin-top: 0;
    }

    .find-box .body {
        padding: 40px 20px;
    }

    .find-box .body .title {
        font-size: 17px;
    }

    .find-box .body .contents {
        font-size: 13px;
    }

    .input-box #password, #loginForm #userId {
        width: 100% !important;
    }

    .footerNew {
        display: none;
    }

    .footer .m-only{
        display: none !important;
    }
}