@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #ddd;
    transition: all 0.3s;
}

.pwFind {
    width: 40%;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 0 15px -4px #bebebe;
    padding: 30px 45px;
    border-radius: 5px;
}

.pwFind div {
    text-align: center;
    font-size: 18px;
}

.pwFind div>div:first-child {
    font-size: 25px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.pwFind h4 {
    font-family: 'jua';
    font-size: 50px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 20px 0 16px;
}

.pwFind .certify {
    margin-top: 60px;
}


.pwFind button {
    width: 100%;
    font-size: 18px;
    height: 45px;
    line-height: 45px;
    margin-top: 10px;
}

.pwFind .time {
    background-color: #f4f4f4;
    height: 45px;
    line-height: 45px;
    margin: 10px 0;
    border-radius: 2px;
}

/*모바일---------------------------------------------*/
@media all and (min-width: 320px) and (max-width: 1024px) {
    body {
        background-color: #fff;
    }

    .pwFind {
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 30px 25px;
    }

    .pwFind div {
        font-size: 16px;
    }

    .pwFind div>div:first-child {
        font-size: 22px;
        margin-bottom: 5px;
        padding-bottom: 5px;
    }

    .pwFind h4 {
        font-size: 45px;
        margin-bottom: 15px;
        padding: 0;
    }

    .pwFind .certify {
        margin-top: 10px;
    }

    .pwFind button {
        font-size: 16px;
    }
}

/*태블릿 930---------------------------------------------*/
@media all and (width: 960px) {
    .pwFind {
        padding: 30px 100px;
    }
}

/* 노트북----------------------------------------------- */
@media all and (min-width: 1024px) and (max-width: 1440px) {}