I am trying to create a custom check box that has a transparent background and a border with a color of:#888. I have tried many different things but no cigar yet. I cant get rid of the white background.
          <div className="form-checkbox">
              <div className="checkbox-unit">
                {" "}
                <input type="checkbox" /> Remember me
              </div>
            </div>.form-checkbox {
  width: 100%;
  max-width: 400px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px auto;
}
.checkbox-unit {
  margin-top: 10px;
  
  
  
}