input[type=text] {
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border: solid 1px var(--border);
  border-radius: var(--rounded-sm);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: inherit;
  appearance: none;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input[type=text]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--focus);
}

/*# sourceMappingURL=textbox.css.map */