UPDATE:
I figured out what was causing the overflow and extra blank spaces around the div.
The body had some extra margin, apparently, that I caught when inspecting the page. So, once I set body{margin: 0;} the div took up 100vh!
Also, I made only one main-container for all the items, and shifted the body’s CSS properties to this one container. I’m not done yet with this part, since I need to fix the other element’s design/layout, but this part is out of the way (for now haha).
Here’s the updated CSS for now, which has the divs and body fixed up (ignore the other elements):
html,
body {
width: 100%;
min-height: 100%;
}
body {
margin: 0;
}
.main-container {
width: 100vw;
height: 100vh;
background-color: rgba(255, 255, 255, 0.4);
display: block;
font-family: "Gill Sans", sans-serif;
font-size: 18px;
background: url("https://images.unsplash.com/photo-1519751138087-5bf79df62d5b?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
background-size: cover;
background-repeat: no-repeat;
overflow-y: scroll;
}
.container {
height: 100vh;
width: 60vw;
background-color: rgba(255, 255, 255, 0.4);
margin: 0 auto;
overflow-x: hidden;
}
h1,
p {
text-align: center;
}
form {
margin: 0 auto;
width: 60vw;
min-height: 100vh;
background-color: rgba(255, 255, 255, 0.4);
overflow-x: hidden;
}
fieldset {
border: none;
}
label {
display: block;
padding: 10px;
}
input[type="submit"] {
margin: 0 auto;
}
And the HTML fixed up:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Survey Form</title>
<link rel="stylesheet" href="styles-form.css" />
</head>
<body>
<div class="main-container">
<h1 id="title">Survey Form</h1>
<p id="description">Tell us how your experience was like!</p>
<form method="post" action="" id="survey-form">
<fieldset>
<label for="name-label">Name <input id="name-label" name="name" type="text" placeholder="Please enter your name" required/></label>
<label for="email-label">Email <input id="email-label" name="email" type="email" placeholder="Please enter your email" required/></label>
<label for="number-label">Age <input id="number-label" name="number" type="number" placeholder="Please enter your age" min="16" max="120" required/></label>
</fieldset>
<fieldset>
<legend>Would you recommend the event to a friend? (required)</legend>
<select id="dropdown">
<option value="">(select an option)</option>
<option value="Yes">Yes</option>
<option value="No">No</option>
</select>
</fieldset>
<fieldset>
<legend>Ticket Type (required)</legend>
<label for="normal-ticket"><input id="normal-ticket" value="normal-ticket" name="ticket-type" type="radio" checked /> Normal</label>
<label for="vip-ticket"><input id="vip-ticket" name="ticket-type" value="vip-ticket" type="radio" /> VIP Pass</label>
</fieldset>
<fieldset>
<legend>What did you purchase?</legend>
<label for="snacks">
<input id="snacks" type="checkbox" value="snacks">
Snacks
</label>
<label for="drinks-alcoholic">
<input id="drinks-alcoholic" type="checkbox" value="drinks-alcoholic">
Drinks (alcoholic)
</label>
<label for="drinks-non-alcoholic">
<input id="drinks-non-alcoholic" type="checkbox" value="drinks-non-alcholic">
Drinks (non-alcoholic)</label>
<label for="food">
<input id="food" type="checkbox" value="food">
Food
</label>
<label for="merch">
<input id="merch" type="checkbox" value="merch">
Merchandise
</label>
</fieldset>
<fieldset>
<label>Any tips for next time?
<textarea name="tips"></textarea>
<label>
</fieldset>
<input id="submit" type="submit" value="Submit"/>
</form>
</div>
</body>
</html>
If anyone has any suggestions on how this markup/CSS can be improved, or more readable, let me know!!
Thank you to everyone who helped me out 
If anything changes, I’ll update here, and once I’m done I’ll post it.