/**
 * @file
 * Form component's rules.
 *
 * Defines rules for form components : input, label, etc.
 *
 */


/**
 * Forms bases
 */

input,
textarea {
	max-width: 100%;
}

/**
 * Input Text
 */

input[type="text"],
input[type="email"] {
  max-width: 320px;
  display: block;
  padding: 0.5rem;
}

/**
 * Textaera
 */

textarea {
  max-width: 320px;
  display: block;
  padding: 0.5rem;
}


