/* ==========================
   LITTLE BUGGERS SIGNUP PAGE
   ========================== */

body {
  background: #0f0f10;
  color: #fff;
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

/* TOP NAV */
.top-nav {
  position: fixed;
  top: 25px;
  right: 25px;
  display: flex;
  gap: 14px;
  z-index: 200;
}

.nav-btn {
  background: #ff0000;
  color: white;
  padding: 10px 26px;
  border-radius: 26px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 0 10px red;
  transition: 0.3s ease-in-out;
}

.nav-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 22px red;
}

/* MAIN CARD */
.register-container {
  width: 100%;
  max-width: 420px;
  padding: 34px;
  background: #111;
  border-radius: 22px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.45);
  transition: 0.45s ease;
  display: flex;                  /* fix: now flex parent */
  flex-direction: column;
  align-items: center;            /* centers internal elements */
  text-align: center;
}

/* HOVER RAISE + GLOW */
.register-container:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 55px rgba(255, 0, 0, 0.9),
              0 0 90px rgba(255, 0, 0, 0.5);
}

/* LOGO */
.signup-logo {
  width: 170px;
  margin-bottom: 12px;
}

/* TEXT */
.subtitle {
  color: #bbb;
  margin-bottom: 18px;
}

/* FORM WRAPPER */
.register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* INPUTS */
.register-form input {
  width: 100%;
  max-width: 320px;
  padding: 14px;
  margin: 10px 0;
  background: #1c1c1e;
  border-radius: 12px;
  border: 1px solid #333;
  color: #fff;
  font-size: 1rem;
}

.register-form input:focus {
  border-color: #ff0000;
  outline: none;
  box-shadow: 0 0 10px rgba(255,0,0,0.6);
}

/* BUTTON */
.submit-btn {
  width: 100%;
  max-width: 320px;
  padding: 14px;
  background: #ff0000;
  border: none;
  border-radius: 26px;
  margin-top: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 0 18px red;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #c00000;
  box-shadow: 0 0 35px red;
  transform: translateY(-4px);
}

/* ALT LINK */
.alt-link {
  margin-top: 16px;
  color: #aaa;
}

.alt-link a {
  color: #ff0000;
  font-weight: bold;
  text-decoration: none;
}

.alt-link a:hover {
  text-shadow: 0 0 10px red;
}
