Displays a centered form with a yellow border

by Barbos

HTML

<form>
    <fieldset>
        Username:<br />
        <input type="text"><br />
        Password:<br />
        <input type="text">
    </fieldset>
</form>

CSS

fieldset{
  border: 1px solid rgb(255,232,57);
  width: 400px;
  margin: 0 auto;
  text-align: left;
}