body {
    background-color: #120b21;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#a {
  background-image: linear-gradient(to right,
          #fca541,
          #fca541 50%,
          white 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

#a:before {
  content: '';
  background: #fca541;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

#a:hover {
  background-position: 0;
  font-size: small;
}

#a:hover::before {
  width: 100%;
}

.bar {
  background-color: transparent;
  height: 0px;
  width: 100%;
  margin: 0;
  padding: 0px;
  display: flex;
  justify-content: center;

}

.navbar {
  background: rgba(0, 0, 0, 0.3);
  font-family: "gotham", helvetica;
  text-decoration: dotted;
  z-index: 1;
  position: fixed;
}

.navbar li {
  float: left;
  list-style: none;
  padding: 16px 30px;
}

.navbar ul {
  overflow: auto;


}

.navbar li a {
  padding: 3px 3px;
  text-decoration: none;
  color: white;
  font-weight: bold;

}
#b {
  box-shadow: inset 0 0 0 0 #494949;
  color: white;
  padding: 0 .25rem;
  margin: 0 -.25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
  border: none;
  background-color: grey;
  margin-top: 10px;
  margin-left: 80%;
}

#b:hover {
  color: black;
  box-shadow: inset 200px 0 0 0 #fca541;
  ;
}


#b {
  color: white;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;

  background-color: transparent;
  backdrop-filter: transparent;
}

#b {
  width: 150px;
  height: 40px;
}

.box {
    width: 500px;
    height: 500px;
    border-radius: 20px;
    background-color: #1b1930;
    position: relative;
}
@property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0deg;
}
.box::after,
.box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    --angle: 0deg;
    background-image: conic-gradient(
        from var(--angle), #ea2dd8, #001bf1, #ea2dd8
    );
    animation: autoRotate 2s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    padding: 5px;
    box-sizing: unset;
}
.box::after {
    filter: blur(60px);
}
@keyframes autoRotate {
    to {
        --angle: 360deg;
    }
}


  .form-container {
    background: #2c2c2c;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    height: 460px;
    
  }

  .form-container h1 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }

  .form-container p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #b3b3b3;
  }

  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #1a1a1a;
    color: #fff;
  }

  .form-container input::placeholder,
  .form-container textarea::placeholder {
    color: #b3b3b3;
  }

  .form-container textarea {
    resize: none;
    height: 80px;
  }

  .form-container button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #6c5ce7;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .form-container button:hover {
    background: #8e7dff;
    box-shadow: 0 0 15px #6c5ce7, 0 0 25px #8e7dff;
  }

  .form-container button:active {
    transform: scale(0.95);
  }

  @keyframes glow {
    0% {
      box-shadow: 0 0 5px #6c5ce7;
    }
    50% {
      box-shadow: 0 0 15px #8e7dff;
    }
    100% {
      box-shadow: 0 0 5px #6c5ce7;
    }
  }

  .form-container button:hover {
    animation: glow 1s infinite alternate;
  }