@font-face{
    font-family:Iran;
    src:url("assets/fonts/iran.ttf");
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Iran,sans-serif;
}

body{
    background:#FFFFFF;
    color:#000;
}

/* =======================
   تولبار
======================= */

header{
    position:relative;
    height:65px;
    background:#00C853;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.title{
    color:#FFFFFF;
    font-size:22px;
    font-weight:bold;
}

.backBtn{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#FFFFFF;
    text-decoration:none;
}

/* =======================
   لوگو
======================= */

.topLogo{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:30px 0 20px;
}

.topLogo img{
    width:100px;
    height:100px;
}

/* =======================
   کارت
======================= */

.container{
    width:92%;
    max-width:450px;
    margin:auto;
    background:#FFFFFF;
    border-radius:25px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.container p{
    text-align:center;
    color:#666;
    margin-bottom:20px;
    font-size:15px;
}

/* =======================
   پیش نمایش
======================= */

#preview{
    display:none;
    width:100%;
    max-height:320px;
    object-fit:contain;
    border:2px dashed #00C853;
    border-radius:20px;
    margin-bottom:20px;
}

/* =======================
   دکمه انتخاب تصویر
======================= */

.chooseFile{
    display:block;
    width:100%;
    padding:16px;
    background:#00C853;
    color:#FFFFFF;
    text-align:center;
    font-size:18px;
    font-weight:bold;
    border-radius:50px;
    cursor:pointer;
    user-select:none;
    box-shadow:0 8px 20px rgba(0,200,83,.30);
    transition:.25s;
}

.chooseFile:hover{
    transform:translateY(-2px);
}

/* =======================
   نوار پیشرفت
======================= */

#progress{
    display:none;
    position:relative;
    width:100%;
    height:28px;
    margin-top:20px;
    background:#E8F5E9;
    border-radius:50px;
    overflow:hidden;
}

#bar{
    position:absolute;
    right:0;
    top:0;
    width:0%;
    height:100%;
    background:#00C853;
    transition:width .2s;
}

#percent{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    color:#FFFFFF;
    font-size:15px;
    font-weight:bold;
    text-shadow:0 1px 2px rgba(0,0,0,.35);
    z-index:2;
}

/* =======================
   موبایل
======================= */

@media(max-width:600px){

    .container{
        width:95%;
    }

    .title{
        font-size:20px;
    }

    .topLogo img{
        width:90px;
        height:90px;
    }

}