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

input {
  outline: none;
}

.status-danger {
  background-color: #f7f9fc;
  border-color: #ff3d71;
  color: #222b45;
}