.bg__comment-form {
    > form {
        display: flex;
        align-items: flex-end;
        flex-direction: column;

        textarea {
            width: 100%;
            min-height: 30px;
            min-width: auto;
            max-width: 100%;
            padding: 10px;
            // overflow is hidden because we use the autosize textarea component
            overflow: hidden;
            font-size: 12px;
        }

        button {
            background-color: $clSecondary;
            color: white;
            font-family: $fontHeading;
            border: 0;
            padding: 6px 15px;
            font-size: 1.2em;
            text-transform: uppercase;
            border-radius: 2px;
            transition: opacity 0.3s ease-out;
            &:hover {
                opacity: 0.8;
            }
        }
    }
}
