Moving the position of an input box?

Hello, would anyone know how to move the position of an input box please?

I currently have a few inputs in a form, but they are all right on the edge of the form border and I want to move them to the right a little. I’ve been looking for an answer online, but can’t quite find the right one…

Thanks…

Depends on what you want, and what your code actually looks like. Tough to give a specific recommendation without seeing your code, haha.
Some basic options:

.my-inputs {
  /* left margin */
  margin-left: 10px;
  /* left padding */
  padding-left: 10px;
}

/* manipulate form instead (affects all elements in the form) */
#my-form {
  padding-left: 10px;
}

Do whatever you think makes the most sense to get the page to do what you want.

Great. Thank you so much for your help.