.content {
    width: 100%;
    padding: 0 1rem;
}

#waitlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    padding: 1rem;
    margin: 1rem auto 6rem;
    border-radius: 0.7rem;
    box-shadow: rgba(0, 0, 0, 0) 0 0, rgba(0, 0, 0, 0) 0 0, rgba(0, 0, 0, 0.24) 0 3px 8px 0;

    @media (min-width: 48rem) {
        max-width: 80%;
        padding-inline: 4rem;
    }

    @media (min-width: 64rem) {
        max-width: 70%;
    }

    @media (min-width: 96rem) {
        max-width: 50%;
    }

    .head {
        width: 100%;

        img {
            display: block;
            max-width: 100%;
            height: 5rem;
        }
    }

    .signupContent {
        width: 100%;
    }

    .formGroup {
        .properties {
            display: flex;
            flex-wrap: wrap;

            .street {
                width: 100%;
            }

            .split {
                display: flex;
                width: 100%;

                input {
                    width: 50%;
                }
            }

            input {
                margin-right: 4px;
                margin-bottom: 4px;
            }
        }
    }

    .buttongroup {
        margin-top: 2rem;
        margin-bottom: 1rem;
        float: right;
    }

    b {
        overflow-wrap: anywhere;
    }

    .container {

        .group {
            display: flex;
            margin-bottom: 1rem;

            .groupItem {
                padding-right: 5px;
                width: 50%;
            }

            .groupItemFull {
                padding-right: 5px;
                width: 100%;
            }

            .smallDescription {
                font-size: 12px;
            }

            input:not([type='checkbox']), textarea, select {
                width: 100%;
            }
        }

        .group.notice {
            margin-top: -0.8rem;
        }
    }

    .subHeadline {
        font-size: 22px;
        font-weight: bold;
        border-bottom: 1px solid var(--borderGray);
        width: 100%;
        margin-bottom: 1rem;
    }
}

