*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + :disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

body {
  background-color: #E9E9E9;
  color: #64748B;
  font-family: Inter;
}

.container {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}

header, main, footer {
  padding-left: 30px;
  padding-right: 30px;
}

header {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
header h1 {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-left: 20px;
}

section.qrArea {
  margin-top: 50px;
  margin-bottom: 50px;
}
section.qrArea .qrCodeBox {
  width: 300px;
  height: 300px;
  background-color: #fff;
  border: 2px dashed rgb(226, 232, 240);
  border-radius: 8px;
  border-width: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A0A0A0;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}
section.qrArea .qrCodeBox img {
  width: 256px;
  height: 256px;
}
section.qrArea .qrCodeBox .loading {
  display: none;
  position: relative;
  padding-left: 26px;
}
section.qrArea .qrCodeBox .loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #CBD5E1;
  border-top-color: #64748B;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: qr-spin 0.8s linear infinite;
}
section.qrArea .targetText {
  text-align: center;
}
section #url-input-area {
  margin-bottom: 25px;
}
section #url-input-area dt {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 5px;
  margin-left: 5px;
}
section #url-input-area dd {
  position: relative;
}
section #url-input-area dd input {
  border: 2px solid rgb(203, 213, 225);
  box-shadow: none;
  border-radius: 14px;
  padding-left: 50px;
  padding-right: 10px;
  line-height: 3rem;
  background-color: #fff;
  width: 100%;
  font-size: 1.2rem;
}
section #url-input-area dd input::-moz-placeholder {
  color: #CBD5E1;
}
section #url-input-area dd input::placeholder {
  color: #CBD5E1;
}
section #url-input-area dd input:-webkit-autofill-selected, section #url-input-area dd input:-webkit-autofill-selected:focus {
  background-color: #fff !important;
}
section #url-input-area dd .material-icons {
  position: absolute;
  top: 0.9rem;
  left: 18px;
  color: #CBD5E1;
}
section .generate-btn {
  margin-bottom: 20px;
}
section .generate-btn button {
  width: 100%;
  color: #fff;
  background-color: #EC6613;
  border-radius: 14px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section .generate-btn .material-icons {
  margin-left: 15px;
  font-size: 30px;
}
section .add-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
section .add-btns li {
  width: 50%;
}
section .add-btns li button {
  width: 100%;
  background-color: #fff;
  border-radius: 14px;
  border: 1px solid #EC6613;
  align-items: center;
  justify-content: center;
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #EC6613;
  gap: 8px;
}
section .add-btns li button .material-icons {
  font-size: 1.1rem;
}

footer {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer p {
  text-align: right;
}

@keyframes qr-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */