﻿@font-face {
    font-family: "IRANSansWeb";
    font-style: normal;
    font-weight: normal;
    src: url('/assets/fonts/IranSans/IRANSansWebFaNum.eot') format('embedded-opentype'), url('/assets/fonts/IranSans/IRANSansWebFaNum.woff2') format('woff2'), url('/assets/fonts/IranSans/IRANSansWebFaNum.woff') format('woff'), url('/assets/fonts/IranSans/IRANSansWebFaNum.ttf') format('truetype');
    font-display: swap;
}


* {
    font-family: "IRANSansWeb";
    box-sizing: border-box;
}

.main-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px; 
}

.scan-sample {
    width: 404px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
}

.sample-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.middle-box {
    border: 2px solid #fff;
    border-radius: 8px;
    width: 94%;
    padding: 10px;
    margin: 0 auto;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, -0.9) );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}



.title-box {
    font-weight: bold;
    text-align: center;
    font-size: 19px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

    .title-box::after {
        content: '';
        position: absolute;
        left: -10px;
        bottom: 0;
        width: 105.5%;
        height: 1px;
        background-color: #fff;
    }


.text-box {
    padding: 9px;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

.banner {
    width: 404px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.last-box {
    border: 2px solid #fff;
    border-radius: 8px;
    width: 94%;
    padding: 10px;
    margin: 0 auto;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, -0.9) );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}



.title-box {
    font-weight: bold;
    text-align: center;
    font-size: 19px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

    .title-box::after {
        content: '';
        position: absolute;
        left: -10px;
        bottom: 0;
        width: 105.5%;
        height: 1px;
        background-color: #fff;
    }

.text-list {
    margin: 0;
    padding-left: 20px;
    color: #fff;
    padding-top: 10px;
    font-size: 19px;
    line-height: 1.8;
    list-style-type: disc;
    list-style-position: inside;
}


    .text-list li {
        margin-bottom: 6px; 
    }


.buttons-box {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 22px;
}

.round-btn {
    border: 2px solid #fff;
    border-radius: 23px;
    width: 396px;
    height: 45px;
    background: linear-gradient( to right, #6EE4FF 0%, #12386F 63%, #011A3A 100% );
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
}

.checkbox-box {
    margin-bottom: 15px;
    font-family: sans-serif;
    font-size: 14px;
    margin: 0 auto;
    display: flex;
    cursor: pointer;
    align-items: center;
}

.checkbox-box input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  accent-color: #6C63FF; 
}



@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    20%, 60% {
        transform: translateX(-3px);
    }

    40%, 80% {
        transform: translateX(3px);
    }
}

.shake {
    animation: shake 0.4s ease;
}

@media (max-width:395px){
    .round-btn {
        border: 2px solid #fff;
        border-radius: 23px;
        width: 360px;
        height: 45px;
        background: linear-gradient(to right, #6EE4FF 0%, #12386F 63%, #011A3A 100%);
        color: #fff;
        cursor: pointer;
        font-size: 18px;
        text-align: center;
    }
}