.passsword {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
}

.passsword.show {
    opacity: 1;
    visibility: visible;
}

.pw_inner {
    width: 700px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 55px 75px 65px;
}

.logo {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.pw_write {
    width: 100%;
    margin-top: 20px;
}

.pw_write p {
    font-size: 20px;
    color: #434343;
    font-family: 'Pretendard-Bold', sans-serif;
}

.pw_write input {
    width: 100%;
    height: 45px;
    border: 1px solid #a1a1a1;
    font-size: 18px;
    color: #111;
    font-family: 'Pretendard-Regular', sans-serif;
    margin-top: 10px;
}

.pw_write input::placeholder {
    font-size: 18px;
    color: #d7d7d7;
    font-family: 'Pretendard-Light', sans-serif;
}

.pw_btn {
    width: 100%;
    margin-top: 55px;
    display: flex;
    justify-content: flex-end;
    gap: 0 25px;
}

.pw_btn input {
    width: 200px;
    height: 50px;
    background-color: #111;
    border: 0;
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.pw_btn input:last-child {
    background-color: #83ccd1;
}

































/* mobile */
@media screen and (max-width: 767px) {

    .pw_inner {
        width: 90%;
        padding: 25px 20px;
    }

    .logo {
        width: 100%;
        margin-bottom: 25px;
    }

    .logo img {
        width: 70%;
    }

    .pw_write p {
        font-size: 16px;
    }

    .pw_write input {
        height: 35px;
        font-size: 14px;
    }

    .pw_write input::placeholder {
        font-size: 14px;
    }

    .pw_btn {
        margin-top: 30px;
        gap: 0;
        justify-content: space-between;
    }

    .pw_btn input {
        width: 48%;
        height: 40px;
        font-size: 16px;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .pw_inner {
        width: 50%;
        padding: 25px 30px;
    }

    .logo {
        width: 100%;
        margin-bottom: 25px;
    }

    .logo img {
        width: 50%;
    }

    .pw_write p {
        font-size: 16px;
    }

    .pw_write input {
        height: 35px;
        font-size: 14px;
    }

    .pw_write input::placeholder {
        font-size: 14px;
    }

    .pw_btn {
        margin-top: 30px;
        gap: 0;
        justify-content: space-between;
    }

    .pw_btn input {
        width: 48%;
        height: 40px;
        font-size: 16px;
    }

}
