@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  font-family: "Inconsolata", monospace;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: url("./assets/images/background-desktop.png") no-repeat center
    fixed;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50vh;
  z-index: -50;
}
.top-line {
  position: absolute;
  right: 0;
  height: 25vh;
}
.circle-pattern {
  position: absolute;
  top: 50%;
  right: 27%;
  width: 10%;
  z-index: -50;
}
.circle-pattern1 {
  position: absolute;
  width: 10%;
  z-index: -50;
  left: 5%;
  top: -10%;
}
.lines-pattern {
  position: absolute;
  z-index: -100;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
}
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  color: white;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.logo img {
  width: 20px;
}
.logo span {
  font-size: 20px;
  font-weight: hsl(0, 0%, 100%);
}
.title {
  text-align: center;
  margin: 30px 0;
}
.title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  line-height: 1.2;
}
.title p {
  margin-top: 15px;
  font-size: 1rem;
  color: hsl(252, 6%, 83%);
  font-weight: 400;
}
.ticket-form {
  padding: 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}
.ticket-form label {
  font-size: 1rem;
  align-self: flex-start;
  color: hsl(252, 6%, 83%);
}
.ticket-form .file-upload {
  padding: 20px 30px;
  border: 2px dashed hsl(245, 19%, 35%);
  background-color: hsl(245, 19%, 35%, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
}
.ticket-form .icon-upload {
  padding: 10px;
  background-color: hsl(245, 19%, 35%, 0.3);
  border-radius: 10px;
  margin-bottom: 10px;
}
.ticket-form .file-upload-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: hsl(252, 6%, 83%);
}
.ticket-form input {
  width: 100%;
  padding: 15px 10px;
  background-color: hsl(245, 19%, 35%, 0.3);
  border-radius: 10px;
  outline: none;
  border: 1px solid hsl(245, 19%, 35%);
  cursor: pointer;
  color: hsl(0, 0%, 100%);
  font-size: 1rem;
}
.ticket-form button {
  padding: 15px 10px;
  background-color: hsl(7, 88%, 67%);
  color: hsl(248, 70%, 10%);
  border-radius: 10px;
  margin-top: 15px;
  outline: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 6px sl(245, 19%, 35%);
}
.ticket-form button:hover {
  background-color: hsl(7, 71%, 60%);
}

.attribution {
  font-size: 11px;
  text-align: center;
  color: hsl(252, 6%, 83%);
}
.attribution a {
  color: hsl(0, 0%, 100%);
}
/* responsive */
@media (max-width: 768px) {
  .bottom-line {
    height: 40vh;
  }
  .top-line {
    height: 20vh;
  }
}
@media (max-width: 576px) {
  .bottom-line {
    height: 30vh;
  }
  .top-line {
    height: 18vh;
  }
  .title h1 {
    font-size: 2rem;
  }
  .title p {
    padding: 0 30px;
  }
}
@media (max-width: 468px) {
  .bottom-line {
    height: 18vh;
  }
  .top-line {
    height: 15vh;
  }
  .ticket-form {
    padding: 0 2rem;
  }
  .title h1 {
    font-size: 1.6rem;
  }
}
/* display none */
.close {
  display: none;
}
.ticket-output {
  display: flex;
  flex-direction: column;
}
.ticket-output h1 {
  font-size: 2.5rem;
  margin: 1.5rem;
  text-align: center;
  line-height: 1.5;
}
.ticket-output h1 span {
  background: linear-gradient(hsl(7, 86%, 67%), hsl(0, 0%, 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
}
.ticket-output p {
  color: hsl(0, 0%, 100%);
  text-align: center;
  line-height: 1.5;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.ticket-output p span {
  color: hsl(7, 86%, 67%);
}
.ticket {
  background: url("./assets/images/pattern-ticket.svg") no-repeat center center;
  background-size: cover;
  border-radius: 12px;

  margin: 2rem 3rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.ticket .logo-output {
  display: flex;
  align-items: start;
  gap: 10px;
}
.ticket .user-img img {
  width: 50px;
}
.logo-output img {
  width: 30px;
  margin-top: 3px;
  object-fit: cover;
}
.ticket .text h2 {
  font-size: 1.5rem;
}
.ticket .text p {
  font-size: 1rem;
  color: hsl(252, 6%, 83%);
  line-spacing: 1.5;
  margin-top: 10px;
}
.user-img {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}
.user-img .avatar {
  border-radius: 10px;
}
.user-img .git-user {
  display: flex;
  flex-direction: column;
}
.user-img .git-user h4 {
  font-size: 1.2rem;
  text-transform: capitalize;
}
.git-user .git {
  display: flex;
  align-items: center;
}
.git-user .git img {
  width: 20px;
}
.git-user .git span {
  font-size: 12px;
  color: hsl(252, 6%, 83%);
  margin-top: 5px;
}
