/* ========= Theme extras ========= */
/* Provide better form colors and selections */
::selection{ background: rgba(255,212,0,.35); }

input, textarea, select, button{
  font: inherit;
}


/* Forms (generic) */
form{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
label{
  font-weight: 800;
  font-size: 13px;
  color: var(--muted);
}
input[type="text"], input[type="email"], input[type="password"], textarea, select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--surface2);
  color: var(--text);
  outline: none;
}
textarea{ min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(124,58,237,.55);
  box-shadow: 0 0 0 4px rgba(124,58,237,.16);
}
.form-card{
  max-width: 720px;
  margin: 0 auto;
}
