.form-container {
    display: flex; /* Use flexbox to align items side by side */
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Add space between the label and button */
    width: 100%; /* Set the width you prefer for the container */
}

.form-label {
    margin-right: 10px; /* Add some space between the label and the button */
    font-size: 0.9em; /* Set the font size you prefer */
}
