.banner-section {
    padding: 1.125rem;
    max-width: 91.5rem;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.banner {
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    background-image: url('./../images/banner.png');
    background-size: cover;
    position: relative;
}

.banner__info {
    line-height: 1.5rem;
}

.banner__side {
    flex: 1;
    gap: 1rem;
    display: flex;
    flex-flow: column;
}

.banner__image {
    width: 25.8125rem;
    position: absolute;
    bottom: 0;
    right: 0;
}

.banner__title {
    font-size: 4rem;
    margin: 0;
}

@media (max-width: 992px) {
    .banner__image {
        display: none;
    }
}

@media (max-width: 576px) {
    .banner {
        padding: 1rem;
        background-image: none;
    }

    .banner__info {
        font-size: 0.75rem;
        line-height: 1.25rem;
        text-align: center;
    }

    .banner__side--image {
        display: none;
    }

    .banner__title {
        font-size: 2rem;
        text-align: center;
    }

    .form__row {
        flex-flow: column;
    }
}