@charset "utf-8";

/* S : 공통 */
body {
    overflow-y: hidden;
}
#body {
    overflow-y: auto;
}
#main.auth-body {
    height: calc(100vh - 170px);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 992px) {
    #main {
        height: auto;
    }
}
/* E : 공통 */


/* S : 로그인 */
    h3 {
        font-size: 1.5rem;
        font-weight: 600;
    }
    .login .login-body {
        max-width: 400px;
        margin: 0 auto;
    }
    .login .text-btn-wrap {
        display: flex;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
    }
    .login .text-btn-wrap button {
        font-size: 0.9rem;
    }
    .login .text-btn-wrap button:nth-child(-n+2):after {
        content: "";
        display: inline-block;
        width: 1px;
        height: 15px;
        margin-left: 25px;
        transform: translateY(3px);
        background-color: var(--bs-gray-300);
    }
/* E : 로그인 */


/* S : 아이디 찾기 */
    .find-auth .auth-body {
        max-width: 400px;
    }
/* E : 아이디 찾기 */


/* S : 회원가입 */
    .join {
        max-width: 600px;
    }

    /* S : 약관 동의 */
    .join-body .all-check {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: var(--lb-base04);
        border: 1px solid var(--db-base01);
        border-radius: 1px;
    }
    .join-body .terms-list .terms-item {
        height: 250px;
        overflow: auto;
    }
    /* E : 약관 동의 */

    .tit-wrap h4 {
        font-size: 1.25rem;
    }
    label {
        font-weight: 500;
    }
/* E : 회원가입 */
