:host {
  position: relative;
  display: inline-block;
}
:host.fullWidth {
  width: 100%;
}
:host textarea {
  background-color: #f7f9fc;
  border: 1px solid #edf1f7;
  font-size: 1rem;
  min-height: 40px;
  box-sizing: border-box;
  padding: 0.4375rem 1rem;
  border-radius: 3px;
  color: #1a2138;
  font-weight: 400;
  width: 100%;
}
:host textarea::placeholder {
  color: #8f9bb3;
}
:host textarea:focus {
  outline: 0;
  border-color: #1a34b8;
  box-shadow: 0 0 0 0.375rem #e4e9f2;
}

input {
  outline: none;
}