I could not figure out how to remove the "choose file" from the input button. I just want the user to be able to drag or upload the file directly by clicking on the image. This is what I have so far : here
<div class="popup-wrapper popup-wrapper-3">
  <div class="popup">
    <div class="popup-close">x</div>
    <div class="popup-content">
      <h2>Upload Your Resume</h2>
      <p class="small-text">Upload your resume to complete the job application
      </p>
      <p class="sub">
        <label>Resume:</label>
        <input accept=".doc, .docx, .pdf" type="file" display="none" placeholder="" name="resume">
        <img src="../images/search/apply.gif">
        <p class="small-text">Click to browse the file
        </p>
        <button class="button vlose-button" type="button">Apply Now</button>
      </p>
    </div>
  </div>
</div>
 
     
    