import { style } from "@vanilla-extract/css";
export let formSection = style({
    marginBlockEnd: "6rem",
});
export let buttonSection = style({
    display: "flex",
    gap: "1rem",
});
export let styledChipsInput = style({
    background: "lightgrey",
});
export let chip = style({
    position: "relative",
    border: "0.125rem solid black",
    background: "#fff",
    borderRadius: "0.5rem",
    paddingInline: "1rem",
    paddingBlock: "0.5rem",
    display: "flex",
    alignItems: "center",
});
