@font-face {
    font-family: 'MyVazir';
    src: url('../fonts/Vazir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyVazirBold';
    src: url('../fonts/Vazir-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

*{
    margin: 0;
}

.gone{
    display: none!important;
}

/* --- start phonenumber_page --- */
.phonenumber_page{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.box_v{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.box{
    width: 100%;
    margin: 0 auto;
}

.img_box{
    text-align: center;
}

.logo_img{
    width: 20%;
}

.label_box{
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    text-align: right;
    width: 70%;
}

.label_txt{
    color: black;
    font-family: 'MyVazir', sans-serif;
}

.input_box{
    text-align: center;
    margin-top: 15px;
}

.phone_inp{
    width: 60%;
    height: 50px;
    text-align: center;
    border-radius: 20px;
    border-color: gray;
    outline-color: #FF8000;
    outline-width: 2px;
    font-family: 'MyVazir', sans-serif;
    font-size: 15px;
}

.alert_box{
    text-align: center;
    margin-top: 10px;
}

.alert_txt{
    color: red;
    font-family: 'MyVazir', sans-serif;
}

.button_box{
    text-align: center;
    margin-top: 40px;
}

.requestCode_btn{
    width: 180px;
    height: 40px;
    background-color: #FF8000;
    border-style: none;
    border-radius: 20px;
    color: white;
    transition-duration: 500ms;
    cursor: pointer;
    font-family: 'MyVazirBold', sans-serif;
}

.requestCode_btn:hover{
    width: 180px;
    height: 40px;
    background-color: #c96400;
    border-style: none;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-family: 'MyVazirBold', sans-serif;
}


/* --- end phonenumber_page --- */


















/* X-Large devices (large desktops, less than 1400px) */
@media(max-width: 1399.98px){
    .box_v{
        width: 30%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

/* Large devices (desktop, less than 1200px) */
@media(max-width: 1199.98px){
    .box_v{
        width: 40%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

/* Medium devices (tablets, less than 992px) */
@media(max-width: 991.98px){
    .box_v{
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media(max-width: 767.98px){
    .box_v{
        width: 60%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media(max-width: 575.98px){
    .box_v{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}