section.form {
    margin-top: 0 !important;

    @media (max-width: 1066px) {
        margin-top: 150px !important;
    }

    form {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        gap: 36px;

        @media (max-width: 768px) {
            flex-direction: column-reverse;

            div.trust {
                width: 100% !important;
            }
        }

        div.trust {
            width: 200px;
            display: flex;
            gap: 18px;
            flex-direction: column;
            align-items: center;
            justify-content: space-evenly;
            margin-bottom: 22px;

            > div {
                display: flex;
                flex-direction: column;
                align-items: center;

                img {
                    width: 120px;
                }

                p {
                    font-weight: bold;
                    text-align: center;
                }
            }
        }

        div.form {
            background-color: white;
            border-left: 5px solid var(--colourTaurusSecondary);
            padding: 22px;
            max-width: 600px;

            p:not(:first-of-type) {
                margin-top: 22px;
            }

            p.legal {
                display: flex;
                gap: 9px;
                align-items: center;

                svg {
                    width: 20px;
                    fill: var(--colourTaurusSecondary);
                }
            }

            div.name {
                display: flex;
                gap: 11px;

                > div {
                    width: calc(50% - calc(11px / 2));
                }
            }

            div.input {
                margin-top: 22px;

                label {
                    display: block;
                    font-weight: bold;

                    sup {
                        font-weight: normal;
                    }
                }

                input,textarea {
                    border-radius: 3px;
                    border: 1px solid var(--colourTaurusSecondary);
                    padding: 10px;
                    width: 100%;
                }

                &.submit {
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    gap: 22px;

                    @media (max-width: 768px) {
                        flex-direction: column-reverse;
                        align-items: flex-start;

                        a, button {
                            width: 100%;
                            text-align: center;
                            justify-content: center;
                        }
                    }
                    
                    a {
                        text-decoration: none;
                        color: black;
                        display: flex;
                        gap: 9px;
                        align-items: center;

                        svg {
                            width: 15px;
                        }

                        > span.hover {
                            display: none;
                            font-weight: bold;
                        }

                        &:hover {
                            > span {
                                display: none;
                            }

                            > span.hover {
                                display: block;
                            }
                        }
                    }
                }
            }

            div.cf-turnstile {
                width: fit-content;
                max-width: 100%;
                display: block;
                margin-top: 22px;
                margin-left: auto;
                margin-right: auto;
            }
        }
    }

    div.result {
        text-align: left;
        margin: 22px;
        background-color: white;
        padding: 22px;
        padding-left: 32px;
        max-width: 600px;
        width: 100%;
        border-left: solid 5px lime;

        p.title {
            font-weight: bold;
            font-family: 'Montserrat Black';
            font-size: 44px;
            text-transform: uppercase;
        }

        a {
            margin-top: 22px;
        }

        &.thanks {
            border-left-color: var(--colourTaurusPrimary);
        }

        &.oops {
            border-left-color: var(--colourTaurusTertiary);

            p.title {
                font-size: 22px;
            }
        }
    }
}