/**
 * @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;
}


/**
 * Contact Form
 */

.webform-contact__wrapper div {
  margin-bottom: 2rem;
}

.webform-contact__wrapper label {
  color: var(--color-neutral--9);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-left: 0.5rem;
}


.webform-contact__wrapper input {
 display: flex;
 height: 61px;
 padding: 16px;
 align-items: center;
 gap: 10px;
 align-self: stretch;
 border-radius: 2px;
 border: 1px solid var(--neutral-20, #E6E4E7);
 background: var(--neutral-10, #F8F7F8);
}

.webform-contact__wrapper textarea {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 2px;
  border: 1px solid var(--neutral-20, #E6E4E7);
  background: #F8F7F8;
  min-width: 500px;
 }

 .webform-contact__wrapper .webform-button--submit {
  display: flex;
  padding: 16px 32px;
  align-items: flex-start;
  border-radius: 2px;
  border: 2px solid var(--neutral-100, #1A181B);
  color: var(--neutral-100, #1A181B);
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  font-size: 18px;
  cursor: pointer;
}

