.find-msg{
    color: #ff4141;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 14px;
}
.find-form{
    width: 300px;
    display: flex;
    flex-wrap: wrap;
}
.find-form.id-form input{
    width: 220px;
    background-color: #0c218b;
}
.find-label{
    width: 100%;
    display: inline-block;
    font-size: 15px;
    margin-bottom: 10px;
    text-indent: 20px;
}
.find-form input{
    width: 200px;
    height: 29px;
    font-size: 13px;
    margin-bottom: 20px;
    margin-left: 15px;
    border: 1px solid #000;
    text-indent: 8px;
    font-family: "Pretendard-Medium", 'NanumBarunpenB', sans-serif;
}
.find-form input:focus{
    outline: 0;
    border: 1px solid var(--main-color);
    background-color: #def6f1;
}
.find-btn{
    width: 70px;
    height: 37px;
    border:1px solid #2b9a69;
    background-color: var(--main-color);
    color:#fff;
    font-size: 13px;
    font-family: "Pretendard-Medium", 'NanumBarunpenB', sans-serif;
}
/*width 기준*/
/*아이폰 8, mini*/
@media all and (max-width:380px) {
    .find-form{
        width: 230px;
    }
    .find-form.id-form input{
        width: 220px;
    }
    .find-form input[type=text]{
        width: 135px;
    }
}
/*아이폰 12, 13 , max */
@media all and (min-width:381px) {
    .find-form{
        width: 270px;
    }
    .find-form.id-form input{
        width: 260px;
    }
    .find-form input[type=text]{
        width: 170px;
    }
}