﻿:root {
        --font-main: "Vazirmatn", system-ui, -apple-system, sans-serif;
}

body {
    background: #e9edf3;
}

body, html, button, input, textarea, select {
    font-family: var(--font-main);
    font-weight: 400;  
}


.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
}


.image-box {
    width: 100%;
    max-width: 520px;  
}


.image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 4px 3px 4px 150px;
    border-radius: 50px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all .3s ease;
}


.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}


.icon-circle svg {
    width: 16px;
    height: 16px;
    stroke: #000;
}


.continue-btn:hover {
    background: #e9edf3;
    color: #000;
    border: 2px solid #000;
}


.continue-btn:hover .icon-circle {
     
    background: #000;
}

.continue-btn:hover .icon-circle svg {
    stroke: #fff;
}



@media (min-width: 768px){

     .image-box {
        width: 120%;
        max-width: 500px;
    }


    .continue-btn {      
        padding: 4px 3px 4px 280px;     
    }


    .Start-b{
        margin-right: 12rem;
        font-size: 16px;
    }
    
}