section.page-header {
    p {
        margin-bottom: 0;
    }

}

section.contact-form {
    .section-inner {
        .form-card {
            border-radius: var(--card-radius);
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            padding: var(--card-padding);
            text-align: left;

            .success-container {
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                .success-icon-container {
                    height: 96px;
                    width: 96px;
                    background-color: #e9faef;
                    border-radius: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 1rem;

                    svg {
                        height: 48px;
                        width: 48px;
                        color: #22c55e;
                    }
                }

            }

        }
    }

    @media (min-width:1000px) {
        .section-inner {
            .form-card {
                max-width: 40vw;
                margin: auto;
            }
        }

    }
}