/* Small overrides on top of Tailwind — input styling for the client UI */
.input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e4e4e7;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  background: #fafafa;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
  background: #fff;
}
[x-cloak] { display: none !important; }
