/**
 * Increase size of input fields for
 * author name and email address.
 */
#respond .comment-form-author,
#respond .comment-form-email {
  float: left;
  width: 50%;
}

/**
 * Input field for web site address is
 * no longer shown in comments form.
 */
#respond .comment-form-url {
  width: 0;
  display: none;
}

/**
 * Adjust padding, since we only have
 * two of three fields left.
 */
#respond .comment-form-author {
  padding-right: 10px;
}

#respond .comment-form-email {
  padding-left: 10px;
  padding-right: 0;
}

#respond .comment-form-url {
  padding: 0;
}

/**
 * Add space between submit button of comments
 * form and box with 'Code of conduct'.
 */
#respond #comment-submit {
  margin-bottom: 20px;
}

/**
 * Insert box with 'Code of conduct' after form
 * to enter new comment or reply to existing one.
 */
.comment-reminder {
  clear: both;
  background: rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 2.5rem 0;
}

.comment-reminder h4 {
  text-transform: uppercase;
}

.comment-reminder p {
  font-weight: normal;
}