@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/Inconsolata-VariableFont_wdth.ttf");
}

: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%);
  --Gradient: hsl(7, 86%, 67%) to hsl(0, 0%, 100%);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-image: url("assets/images/background-desktop.png");
  background-size: cover;
  font-family: "Barlow", sans-serif;
  color: var(--Neutral-0);
  position: relative;
}

.pattern-lines,
.pattern-circles,
.squiggly-line-bottom,
.squiggly-line-top {
  position: fixed;
  z-index: -100;
}

.pattern-lines {
  top: 0;
}

.pattern-circles {
  right: 100px;
  bottom: 40px;
}

.squiggly-line-bottom {
  bottom: 0;
}

.squiggly-line-top {
  top: 0;
  right: 0;
}

.ticket-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 450px;
  margin: 0 auto;
  padding: 20px 0;
}

.logo img {
  width: 150px;
  margin-bottom: 20px;
}

.ticket-form h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.ticket-form h1 span {
  font-weight: 900;
  background: -webkit-linear-gradient(hsl(7, 86%, 67%), hsl(0, 0%, 100%));
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ticket-form p {
  font-size: 0.85rem;
  color: var(--Neutral-300);
  margin-bottom: 20px;
}

.ticket-form p span {
    background: -webkit-linear-gradient(hsl(7, 86%, 67%), hsl(0, 0%, 100%));
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: start;
  padding: 0 60px;
}

form {
  margin-left: 10px;
}

.upload-avatar {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 6px 0;
}

.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff10;
  width: 100%;
  height: 100px;
  border: 1.5px dashed var(--Neutral-500);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.upload-avatar img {
  width: 30px;
  background-color: #ffffff44;
  border: 1px solid var(--Neutral-700);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 10px;
}

.upload-label span {
  text-align: center;
}

.file-info {
  display: flex;
  align-items: center;
  font-size: 10px;
  margin-bottom: 8px;
}

.file-info img {
  margin-right: 4px;
}

#change-avatar,
#delete-avatar {
  display: none;
  background-color: #ffffff1e;
  color: var(--Neutral-500);
  border: none;
  border-radius: 4px;
  padding: 2px 4px;
  cursor: pointer;
}

#change-avatar:hover,
#delete-avatar:hover {
  text-decoration: underline;
}

input[type="file"] {
  display: none;
}

input[type="text"],
input[type="email"] {
  background-color: #ffffff36;
  color: var(--Neutral-0);
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid var(--Neutral-700);
  border-radius: 8px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.527);
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background-color: var(--Orange-500);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  margin-top: 8px;
  cursor: pointer;
}

.ticket {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 160px;
    background: linear-gradient(rgba(255, 255, 255, 0.185), rgba(255, 192, 203, 0.381));
    mask: unset;
    -webkit-mask: radial-gradient(20px,#0000 98%,#000) 100px 82px;
    border-radius: 14px;
    border: 1px solid var(--Neutral-300);
}

.profile-pic img {
    width: 60px;
    border-radius: 6px;
    margin-right: 10px;
}

.personal-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid;
}