.signup {
    padding-top: 120px;
    background-color: var(--background-color-dark);
}


.hero h2, .hero p {
    text-align: center;
    color: white;
}

.hero p {
    padding-left: 3rem;
    padding-right: 3rem;
}
.card-white {
    height: auto;
}
@media (max-width: 768px) {
    .card-white {
        padding: 1rem;
    }
}

.gradient-balls-side {
    position: absolute;
    display: flex;
    gap: 0rem;
    z-index: 1;
}

.left-side {
    left: 0;
}

.right-side {
    right: 0;
}

.gradient-balls-column {
    display: flex;
    flex-direction: column;
    width: min(150px, 10vw);
    height: 100%;
}

    

.gradient-ball {
    width: min(150px, 10vw);
    height: min(150px, 10vw);
    background: linear-gradient(180deg, var(--gradient-from) 0%, var(--gradient-middle) 50%, var(--gradient-to) 100%);
    border-radius: 50%;
    margin-bottom: 0;
}

    .gradient-ball.image-ball {
        background: none;
        overflow: hidden;
    }

        .gradient-ball.image-ball img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }