.landing-hero {
    display: flex;
    min-height: 100vh;
    overflow: hidden; 
    background: url('/static/img/squeeze page/SPORTS-DATA-CAMPUS-HOME.jpg') center/cover no-repeat fixed;
    flex-direction: row; 
    width: 100vw;
}

.landing-hero .hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    /* padding: 2rem; */
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.19);
    width: 100%;
    height: 100vh;
}

.hero-content .card {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: .75rem;
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.hero-content .card-body {
    background: transparent;
    color: #000;
    border-radius: .75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .landing-hero {
        flex-direction: column;
    }

    .landing-hero .hero-img {
        height: 40vh;
    }

    .landing-hero .hero-content {
        flex: none;
    }
}