/* SIGNUP PAGE THEME MATCHING HOMEPAGE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Background Canvas */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #0ff, #ff00c8, #002BFF);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -3;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* NAVBAR SAME AS HOMEPAGE */

#Navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 30px;
  height: 55px;
  width: 97%;
  max-width: 1310px;

  padding: 0 25px;
  margin: 15px auto;

  position: fixed;
  top: 1px;
  left: 50%;
  /* FIX */
  transform: translateX(-50%);
  /* FIX */

  z-index: 1000;
  transition: 0.35s ease;
}


#Navbar.shrink {
  width: 90%;
  backdrop-filter: blur(6px);
}

#Navbar a {
  color: white;
  text-decoration: none;
}

#Navbar a:hover {
  color: cyan;
  text-decoration: underline;
  transition: 0.8s;

}

/* Branding */
#divclass1 {
  display: flex;
  align-items: center;
  gap: 5px;
  /* logo text spacing */
}

#h3id1 {
  color: cyan;
  font-size: 22px;
}

#h3id2 {
  color: magenta;
  font-size: 22px;
}

/* Center Menu */
#divclass2 {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  right: 135px;
}

/* Right buttons */
#divclass3 {
  display: flex;
  align-items: center;
  gap: 15px;
}

#buttonid1 {
  background: white;
  border: none;
  border-radius: 30px;
  height: 32px;
  width: 80px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  font-weight: 600;
}

#buttonid1:hover {
  background: cyan;
}

/* SIGNUP FORM */
.signup-section {
  width: 100%;
  padding-top: 150px;
  text-align: center;
  color: white;
}

.signup-section h1 {
  font-size: 45px;
  margin-bottom: 40px;
}

.signup-form {
  width: 90%;
  max-width: 450px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-box {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 20px;
}

.input-box label {
  margin-bottom: 6px;
  font-size: 15px;
  opacity: 0.8;
}

.input-box input {
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: white;
  font-size: 15px;
}

.signup-btn {
  margin-top: 10px;
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 12px;
  background: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.signup-btn:hover {
  background: cyan;
}

.login-link {
  margin-top: 15px;
  color: #ddd;
}

.login-link a {
  color: cyan;
  text-decoration: none;
  font-weight: bold;
}