:root {
  --neutral-0: hsl(0, 0%, 100%);
  --neutral-300: hsl(252, 6%, 83%);
  --neutral-500: hsl(245, 15%, 58%);
  --neutral-700: hsl(245, 19%, 35%);
  --neutral-900: hsl(248, 70%, 10%);
  --orange-500: hsl(7, 88%, 67%);
  --orange-700: hsl(7, 71%, 60%);
}

@font-face {
  font-family: "inconsolata";
  src: url("../assets/fonts/Inconsolata-VariableFont_wdth,wght.ttf");
}
*,
*::before,
*::after {
  font-family: "inconsolata";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 0;
}
body .bg {
  height: 100dvh;
  width: 100dvw;
  position: fixed;
  z-index: -10;
  top: 0;
}
body .pattern-lines {
  position: fixed;
  top: 0;
  z-index: -5;
}
body .squiggly-top {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: -6;
  width: 30%;
}
body .squiggly-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -5;
}
body .pattern-circles {
  position: fixed;
  top: 50%;
  right: 20dvw;
  z-index: -5;
}
body img.desktop {
  display: none;
}
@media (min-width: 768px) {
  body img.desktop {
    display: block;
  }
  body img.mobile {
    display: none;
  }
}

input {
  font: inherit;
}

header {
  padding: clamp(30px, 5dvw, 50px);
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 0;
}

main {
  max-width: 900px;
}
main h1 {
  text-align: center;
  margin: 2rem;
  font-size: clamp(2.5rem, 5dvw, 3.5rem);
}
main h3 {
  text-align: center;
  font-weight: 400;
  color: var(--neutral-300);
  margin: 2rem;
}
main form {
  max-width: 530px;
  padding: 30px;
  margin: 0 auto;
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-flow: column;
  gap: 25px;
}
main form > div {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-flow: column;
  gap: 15px;
}
main form > div label {
  display: block;
}
main form > div input {
  font-size: 16px;
  color: #fff;
  display: block;
  width: 100%;
  padding: 15px;
  background-color: rgba(75, 72, 106, 0.2);
  backdrop-filter: blur(2px);
  border: 1px solid var(--neutral-500);
  border-radius: 10px;
  margin: 2px;
}
main form > div input:focus {
  outline: 1px solid;
}
main form > div input.error {
  border: 1px solid var(--orange-700);
}
main form > div [class*=error__message__] {
  font-size: 13px;
  display: flex;
  justify-content: normal;
  align-items: center;
  flex-flow: row;
  gap: 10px;
}
main form > div [class*=error__message__] .info-icon {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  border: 2px solid;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  gap: 0;
}
main form > div [class*=error__message__].error {
  color: var(--orange-700);
}
main form [type=submit] {
  background-color: var(--orange-700);
  color: var(--neutral-900);
  font-weight: 800;
  border: none;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.file .file__box {
  border: 2px dashed var(--neutral-700);
  border-radius: 20px;
  padding: 25px;
  background-color: rgba(75, 72, 106, 0.2);
  cursor: pointer;
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 20px;
  z-index: 1;
}
.file .file__box img {
  background: rgba(135, 132, 164, 0.4);
  border-radius: 10px;
  border: 2px solid var(--neutral-700);
  object-fit: contain;
}
.file .file__box span {
  text-align: center;
  color: var(--neutral-300);
}
.file .file__box span.uploaded {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  gap: 15px;
}
.file .file__box span.uploaded > * {
  border: 2px solid;
  z-index: 10;
  cursor: text;
  background: rgba(135, 132, 164, 0.4);
  padding: 10px;
  border-radius: 5px;
}
.file .file__box span.uploaded :first-child {
  text-decoration: 2px underline;
}
.file #input-file {
  display: none;
}

article {
  padding: 0 10%;
  max-width: 900px;
  display: none;
}
article h1 {
  text-align: center;
  margin: 2rem;
  font-size: clamp(2.5rem, 5dvw, 3.5rem);
}
article h1 .full__name > * {
  background-image: linear-gradient(to right, var(--orange-700), white);
  background-clip: text;
  color: transparent;
}
article h3 {
  text-align: center;
  font-weight: 400;
  color: var(--neutral-300);
  margin: 2rem;
}
article h3 .email__address {
  color: var(--orange-700);
}
article .ticket {
  margin: 0 auto;
  max-width: 500px;
  backdrop-filter: blur(5px);
  position: relative;
}
article .ticket > img {
  width: 100%;
}
article .ticket__content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-flow: column;
  gap: 0;
}
article .ticket__content__top {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 5px 10px;
}
article .ticket__content__top .logo__text {
  font-size: 2rem;
  font-weight: 700;
}
article .ticket__content__top p {
  font-size: 16px;
  grid-column: 2/-1;
  color: var(--neutral-300);
}
article .ticket__content__bottom {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: normal;
  align-items: center;
  flex-flow: row;
  gap: 15px;
}
article .ticket__content__bottom img {
  width: 70px;
}
article .ticket__content__bottom > div {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-flow: column;
  gap: 5px;
}
article .ticket__content__bottom .full__name__ticket {
  font-size: 1.5rem;
  font-weight: 700;
}
article .ticket__content__bottom p {
  font-size: 16px;
  color: var(--neutral-300);
  display: flex;
  justify-content: normal;
  align-items: center;
  flex-flow: row;
  gap: 5px;
}
article .ticket__content__bottom p img {
  width: auto;
}
article .ticket__content__id {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 1.5rem;
  transform: translateY(-50%) rotate(90deg);
  color: var(--neutral-300);
}

.attribution {
  margin-top: 100px;
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}/*# sourceMappingURL=main.css.map */