body {
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(80, 0, 0, 0.8) 0%,
      rgba(0, 0, 10, 0.9) 60%,
      #000000 90%
    ),
    linear-gradient(15deg, #000000 0%, #000000 100%);
  text-decoration: none;
  user-select: none;
}

html,
body {
  overflow-x: hidden;
  touch-action: pan-y;
  touch-action: pan-x;
  user-select: none;
  height: 100%;
  margin: 0;
  max-width: 100%;
  scroll-behavior: smooth;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  text-decoration: none;
  user-select: none;
}

html,
:host {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

main {
  background: rgba(155, 155, 155, 0.075);
  backdrop-filter: blur(10px);
  margin: auto;
  position: relative;
  width: 90%;
  height: 500px;
  top: 250px;
  border-radius: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.459);
  border: 1px solid rgba(255, 255, 255, 0.281);
  max-width: 602px;
  min-width: 335px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

h1 {
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 44px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 293;
  font-style: normal;
  text-shadow: 0px 7px 10px rgba(197, 0, 56, 0.87);
}

h1 i {
  font-size: 30px;
}

.p1 {
  color: rgba(255, 255, 255, 0.315);
  text-align: center;
  width: 70%;
  margin: auto;
  position: relative;
  bottom: 30px;
}

.p2 {
  color: rgba(255, 255, 255, 0.315);
  text-align: center;
  width: 100%;
  margin: auto;
  position: relative;
  bottom: 40px;
}

.p2 a {
  color: red;
}


form {
  margin: auto;
  position: relative;
  width: 90%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  bottom: 20px;
}

form input, form button{
  height: 40px;
  margin-bottom: 15px;
  border-radius: 15px;
  text-align: center;
  background: rgba(163, 163, 163, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.589);
  color: white;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
}

form input:focus {
  border: 1px solid rgb(180, 19, 19);
}

form button:hover {
  background: rgb(180, 19, 19);
  border: 0;
}


a {
  text-decoration: none;
}

.error {
  display: none;
  text-align: center;
  position: relative;
  color: red;
  background-color: rgba(255, 0, 0, 0.253);
  border-radius: 7px;
}

#animation-code {
  width: 300px;
  height: 300px;
  position: relative;
  left: 50%;
  transform: translateX(-60%);
}







@media (max-width: 800px) {
  main {
    top: 80px;
  }
}

@media (max-width: 384px) {
  main h1 {
    font-size: 41px;
    position: relative;
    left: -4px;
  }

  .p1 {
    width: 90%;
  }
}