﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins';
}

.main-setup-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 500px;
    /*  width: 90% */;
    padding: 60px 40px;
}

.setup-container {
    text-align: center;
    max-width: 500px;
    padding: 40px;
}

.devices-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.device {
    border: 2px solid #FFD700;
    background: transparent;
}

.laptop {
    width: 60px;
    height: 40px;
    border-radius: 4px 4px 0 0;
    position: relative;
}

    .laptop::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 4px;
        background-color: #FFD700;
        border-radius: 0 0 4px 4px;
    }

.desktop {
    width: 80px;
    height: 50px;
    border-radius: 6px;
    position: relative;
}

    .desktop::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 8px;
        background-color: #FFD700;
        border-radius: 0 0 4px 4px;
    }

.mobile-tablet {
    display: flex;
    gap: 8px;
}

.tablet {
    width: 35px;
    height: 45px;
    border-radius: 6px;
}

.mobile {
    width: 20px;
    height: 35px;
    border-radius: 4px;
}

.step-indicator {
    font-size: 13px;
    color: #737373;
    margin-bottom: 10px;
    font-weight: 500;
}

.main-heading {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.description {
    font-size: 18px;
    color: #000;
    line-height: 1.4;
    margin-bottom: 24px;
}

.brand-name {
    color: #FFD700;
    font-weight: bold;
}

.next-button {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 16px 40px;
    font-size: 24px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    max-width: 440px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .next-button:hover {
        background-color: #e6c200;
    }

    .next-button:active {
        background-color: #ccad00;
    }

@media (max-width: 768px) {
    .main-setup-container {
        width: 90%;
        padding: 40px 20px;
    }

    .setup-container {
        padding: 20px;
    }

    .devices-illustration {
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 30px;
    }

    .laptop,
    .desktop,
    .tablet,
    .mobile {
        transform: scale(0.9); /* Slightly smaller on mobile */
    }

    .step-indicator {
        font-size: 12px;
    }

    .main-heading {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .next-button {
        font-size: 18px;
        padding: 14px 30px;
        max-width: 100%;
    }
}


