         
    :root {
        --primary: #4a9d27;
        --secondary: #82b76b;
        --dark: #2d3436;
        --light: #f5f6fa;
        --accent: #fd79a8;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }


    body {
        background-color: var(--dark);
        color: var(--light);
        overflow-x: hidden;
    }

    .background-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover; */
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgb(0 0 0 / 36%)), url(../images/home1.jpg) no-repeat center center / cover;
            /* background: linear-gradient(rgb(170 170 170 / 70%), rgb(90 88 88 / 90%)), url(../images/home.jpg) no-repeat center center / cover; */
            /* background: white; */
        z-index: -1;
    }

    .particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .container {
        border-radius: 10px;
        background: linear-gradient(rgb(247 247 247 / 82%), rgb(255 255 255 / 91%));  
        max-width: 96%;
        height: 98%;
        margin: 1vh 2% 1vh 2%;
    }

    header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 0;
        margin-bottom: 2rem;
        z-index: 2 !important;
    }

    .logo img {
        height: 10vh;
    }

    .main-content {
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        height: 70vh;
    }

    .form-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        

    }
    .form-image{
            height: 40vh;
            display: flex;
            justify-content: center;
            align-items: center;
    }
    .registration-section img{
        height: auto;
        width: 60%;
    }
    .warranty-image img{
        height: auto;
        width: 90%;
    }   
    .form-section:hover {
        transform: translateY(-10px);
    }
    .form-btn {
        display: block;
        width: 90%;
        padding: 1rem;
        margin: 1rem;
        border: none;
        border-radius: 50px;
        /* background: linear-gradient(45deg, var(--primary), var(--secondary)); */
        background: var(--primary);
        color: white;
        font-weight: 600;
        font-size: 1.4rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
    }

    .form-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(108, 92, 231, 0.6);
    }

    .form-btn:active {
        transform: translateY(1px);
    }

    /* Responsive adjustments */
    @media (max-width: 730px) {       
        .main-content {
            display: block;
            height: 75vh;
            /* border: 1px solid red; */
        }
        .form-section {
            margin-bottom: 1rem;
            height: 35vh;
            /* border: 1px solid blue; */
        }
        .form-image{
            /* border: 1px solid green; */
            height: 25vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .registration-section img{
            height: 25vh;
            width: auto;
        }

        .warranty-image img{
            height: auto;
            width: 60%;
        }   
        .form-btn {
            padding: 0.5rem;
            width: 80%;
            font-size: 1.2rem;
        }
    }

    @media (max-width: 445px) {
        .warranty-image {
            height: 15vh;
        }
        .warranty-image img{
            height: auto;
            width: 60%;
        }   
    }