.email-confirm{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.email-msg{
    margin-bottom: 15px;
}
.email-danger-msg p{
    margin: 5px 0;
    color: #ff0000;
}
.email-form{
    display: flex;
    flex-wrap: nowrap;
    width: 250px;
    justify-content: space-between;
}
.email-form label{
    display: none;
}
.email-form input:focus{
    outline: none;
}
.email-form input{
    height: 30px;
    margin-bottom: 10px;
    border: 1px solid #707070;
    text-indent: 5px;
    font-size: 1.4rem;
    font-family:"Pretendard-Bold", sans-serif;
}
.email-form input.user-email{
    width: 80%;
    margin-right: 10px;
    height: 30px;
    margin-bottom: 10px;
    border: 1px solid #707070;
    text-indent: 5px;
}
.email-form input.user-phone{
    width: 60%;
    margin-right: 0px;
}
.email-form button{
    width: 80px;
    border: 1px solid var(--main-color);
    color: #fff;
    background-color:var(--main-color);
    font-size: 1.5rem;
    height: 34px;
    border-radius: 30px;
    font-family:"Pretendard-Medium", 'NanumBarunpenB', sans-serif;
}
.email-form.cf-num-form input.cf-num{
    width: 60%;
    height: 30px;
    margin-bottom: 10px;
    border: 1px solid #707070;
    border-right: none;
    text-indent: 5px;
}
.email-form.cf-num-form input.cf-timer{
    width: 40%;
    text-indent: 0;
    border-left: none;
    color:  red;
}
.email-btn{
    width: 230px;
    text-align: right;
}
.email-btn button{
    width: 100%;
    border: 1px solid var(--main-color);
    color: #fff;
    background-color:var(--main-color);
    font-size: 1.5rem;
    height: 34px;
    font-family: "Pretendard-Medium", 'NanumBarunpenB', sans-serif;
    border-radius: 30px;
    margin: 10px 0;
}
/*
아이폰 8, mini
*/
@media all and (max-width:380px) {
    .email-form{
        width: 230px;
    }
    .email-form input.user-email{
        width: 125px;
    }
    .email-btn{
        width: 230px;
    }
}

/*
아이폰 12, 13 , max
 */
@media all and (min-width:381px) {
    .email-form{
        width: 260px;
    }
    .email-form input.user-email{
        width: 155px;
    }
    .email-btn{
        width: 260px;
    }
    .email-form.cf-num-form input.cf-num{
        width: 65%;
        border-right: none;
    }
    .email-form.cf-num-form input.cf-timer{
        width: 35%;
        text-indent: 0;
        border-left: none;
        color:  red;
    }
}