/* input(78,26): run-time error CSS1034: Expected closing parenthesis, found '<'
input(96,26): run-time error CSS1034: Expected closing parenthesis, found '<' */
section.newsletterSignup{
    padding: var(--space-xs);
    display: flex;
    gap: var(--space-s);
    flex-wrap: nowrap;
    --flexItemsPerRow: 2;
}

section.newsletterSignup .form{
    flex-grow: 1;
    /*width: 64%;*/
}

.message{
    margin-bottom: var(--space-xl);
}

p.greeting{
    text-align: center;
    font-size: var(--step-1);
    font-weight: 600;
}

section.newsletterSignup .information{
    width: 20rem;
}

.information a:hover{
    color: var(--color-primary);
}

section.newsletterSignup .information .content{
    padding: var(--space-2xs) var(--space-s);
}

section.newsletterSignup .information .cellPhone a,
section.newsletterSignup .information .email a,
section.newsletterSignup .information .address a{
    display: flex;
    gap: var(--space-xs);
}

.brokerInformation > div {
    display: flex;
    gap: var(--space-xs);
}

.brokerInformation > div > span{
    /*font-weight: 600;*/
}

section.newsletterSignup form{
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1rem;
    align-items: center;
}

section.newsletterSignup .recaptchaField{
    grid-column: 2 / -1;
}

section.newsletterSignup form .actionArea{
    grid-column: 1 / -1;
}

.submissionMessage{
    color: var(--color-primary);
    font-weight: 600;
    height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media screen and (width <= 900px) {
    section.newsletterSignup{
        flex-wrap: wrap;
    }

    section.newsletterSignup .form{
        width: 100%;
    }

    section.newsletterSignup .information{
        width: 100%;
    }

    section.newsletterSignup form .actionArea{
    grid-column: 1 / -1;
    }
}

@media screen and (width <= 450px) {
    section.newsletterSignup .recaptchaField{
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}