.onboard {
    display: grid;
    grid-template-columns: 35vw 65vw;
    min-height: 100vh;
}



@media (max-width:1250px) {
    .onboard {
        display: grid;
        grid-template-columns: 40vw 60vw;
    }

}

@media (max-width:767px) {
    .onboard {
        display: grid;
        grid-template-columns: 100vw;
    }

}

.onboard .slider {

    background: url(./../images/Pattern.png), linear-gradient(to bottom, #150047, #09001E);
    background-position: center;
    background-size: cover;

}


.bottom-content img {
    height: 24px;
    width: 24px;
}


.onboard .slider h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    /* Minimum height for better spacing */
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    flex-direction: column;
}

.slider-slide {
    min-width: 100%;
    padding: 1rem;
    /* Added padding for better spacing */
}

.pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
}

.pagination-bullet-active {
    background-color: #3B82F6;
    width: 24px;
    border-radius: 4px;
}

/* Responsive spacing adjustments */
@media (min-width: 640px) {
    .slider-wrapper {
        min-height: 200px;
    }
}

@media (min-width: 768px) {
    .slider-wrapper {
        min-height: 220px;
    }
}

@media (min-width: 1024px) {
    .slider-wrapper {
        min-height: 240px;
    }
}

/* .swiper-pagination-bullet {
    background: white !important;
    width: 18px !important;
    height: 4px !important;
    border-radius: 10px !important;
    opacity: 0.5 !important;

}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #2C64E3 !important;
} */

.swiper-slide p {
    line-height: 24px;
}

.swiper-slide h2 {
    margin-bottom: 0.5rem;
}


.login-btn {
    border: none;
    padding: 0.2rem 0.5rem;
    outline: 1px solid #2C64E3;
    border-radius: 4px;
    color: #2C64E3;
}


.onboard input[type='checkbox'] {
    border: 1px solid #2C64E3;
    border-radius: 3px;
}