I am facing an issue with my bootstrap columns. One column has a form, while the other contains an image. The image section is set to 100% width, making it responsive when the screen size changes. However, the form remains at a fixed height regardless of the screen size.
Here is the code snippet:
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"/>
<div class="text-page-contents">
<div class="row">
<div class="col-md-6">
<p class="headingdescription" style="padding-left:0px;text-align:left">Request a Office space</p>
<p>Bla bla bla</p>
<div class="col-md-6" style="padding-left:0px">
<input class="formtextarea" placeholder="Full Name " />
<input class="formtextarea" placeholder="Job Title" />
<input class="formtextarea" placeholder="Phone Number" />
</div>
<div class="col-md-6" style="padding-left:0px">
<input class="formtextarea" placeholder="Business Name" />
<input class="formtextarea" placeholder="Email Address" />
<input class="formtextarea" placeholder="Zipcode" />
</div>
<input class="formtextarea" placeholder="Message" style="height: 100px !important" /> <br> <br>
<button class="actionbuttons" href="">SUBMIT REQUEST</button>
</div>
<div class="col-md-6">
<img src="http://dummyimage.com/600/f0d/&text=illo.png" width="100%">
</div>
</div>
</div>
Thank you for any assistance provided.