#content form {
  clear: both;
}
  #content fieldset {
  }
    #content label {
      clear: left;
      display: block;
      float: left;
      line-height: 1.5em;
      margin-bottom: .65em;
      width: 25%;
    }
    #content input, #content textarea, #content select {
      float: left;
      clear: right;
      margin-bottom: .5em;
      width: 70% !important;
    }
      #content input[type='text'], #content input[type='email'], input[type='password'], #content textarea {
        border: 1px solid #ccc;
        padding: .2em;
      }
    #content input[type='checkbox'], #content input[type='submit'], #content select {
      width: auto !important;
    }

    .nette-form th {
      color: #333;
      font-weight: normal;
      text-align: left;
      width: 25%;
    }
    .nette-form td {
      border: 0;
      width: 75%;
    }
      #content .nette-form label {
        width: auto;
      }
      #content .nette-form input[type='text'], #content .nette-form input[type='email'], #content .nette-form input[type='password'], #content .nette-form textarea, #content .nette-form select {
        width: 100% !important;
      }
      .nette-form .error {
        color: #d01111;
      }

    /* Form errors */
    form .errors {
      background: #fff;
      border: 1px solid #f33;
      color: #000;
      margin-bottom: 1em;
      width: 95%;
    }
      form .errors h2 {
        background: #f33 url(/images/admin/exclamation.png) no-repeat 4px;
        color: #fff;
        font-size: 110%;
        font-weight: normal;
        margin: 0;
        padding-left: 24px;
      }
      form .errors dl {
        margin: 0 .3em;
      }
        form .errors dt {
          font-weight: bold;
          float: left;
          padding-right: 5px;
        }
        form .errors dd {
          margin: 0;
        }
