#phpbb-content {
  /* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
  /* Remove the stupid outer glow in Webkit */
  /* Box Sizing Reset
  -----------------------------------------------*/
  /* All of our custom controls should be what we expect them to be */
  /* These elements are usually rendered a certain way by the browser */
  /* Text Inputs
  -----------------------------------------------*/
  /* Button Controls
  -----------------------------------------------*/
  /* File Uploads
  -----------------------------------------------*/
  /* Search Input
  -----------------------------------------------*/
  /* Make webkit render the search input like a normal text field */
  /* Turn off the recent search for webkit. It adds about 15px padding on the left */
  /* Buttons
  -----------------------------------------------*/
  /* IE8 and FF freak out if this rule is within another selector */
  /* Textarea
  -----------------------------------------------*/
  /* Selects
  -----------------------------------------------*/
}
#phpbb-content input,
#phpbb-content label,
#phpbb-content select,
#phpbb-content button,
#phpbb-content textarea {
  height: unset;
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial;
}
#phpbb-content input:focus {
  outline: 0;
}
#phpbb-content input,
#phpbb-content textarea {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
#phpbb-content button,
#phpbb-content input[type=reset],
#phpbb-content input[type=button],
#phpbb-content input[type=submit],
#phpbb-content input[type=checkbox],
#phpbb-content input[type=radio],
#phpbb-content select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#phpbb-content input[type=checkbox],
#phpbb-content input[type=radio] {
  width: 13px;
  height: 13px;
}
#phpbb-content input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}
#phpbb-content ::-webkit-search-decoration {
  display: none;
}
#phpbb-content button,
#phpbb-content input[type="reset"],
#phpbb-content input[type="button"],
#phpbb-content input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}
#phpbb-content ::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}
#phpbb-content textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}
#phpbb-content select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}
