body {

  background: url('../images/index_baseball_playoffs.png');
  background-size: cover;
  margin: 0;
  padding: 0;
  display: flex;
  min-height: 100vh;
  /* background: linear-gradient(135deg, #ff9a9e, #fad0c4); */
  }
  
  body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background-position: center;
  overflow: hidden;
}

#loginContainer {
  position: fixed;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 320px;
  width: 100%;
  box-sizing: border-box;
  z-index: 1000;
}

  /* Wrapper */
  .wrapper {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: glow 1.5s infinite alternate;
  }
  
  /* Glow Animation */
  @keyframes glow {
    from {
      box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
    }
    to {
      box-shadow: 0 8px 30px rgba(255, 105, 180, 0.8);
    }
  }
  
  /* Input Boxes */
  .input-box {
    margin-bottom: 15px;
    position: relative;
    max-width: 320px;       /* Match your form width */
    margin: 0 auto 15px;    /* Center horizontally */
  }
  
  .input-box label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
  }
  
  .input-box input {
    width: 100%;
    padding: 10px 0px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  
  .input-box input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.2);
  }
  
  /* Remember and Forgot */
  .remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
  }
  
  .remember-forgot a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .remember-forgot a:hover {
    color: #ff3b3b;
  }
  
  /* Button */
  .btn {
    background: #ff6b6b;
    color: white;
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
  }
  
  .btn:hover {
    background: #ff3b3b;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.2);
  }
  
  /* Register Link */
  .register-link {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
  }
  
  .register-link a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .register-link a:hover {
    color: #ff3b3b;
  }
  
.badge {
  display: inline-block;
  background: #fffbe1cc;
  color: #e48d00;
  font-weight: 600;
  padding: 0.16em 0.6em;
  border-radius: 0.75em;
  margin-left: 0.7em;
  font-size: 0.96em;
}

.divider {
  color: #b1b1b1;
  font-size: 0.9em;
  padding: 0 0.55em;
}

@keyframes title-pop {
  from { opacity: 0; transform: translateY(-30px) scale(0.9);}
  to   { opacity: 1; transform: translateY(0) scale(1);}
}

.brand-subtitle {
  font-size: 1.5em;
  color: #233a2b;
  opacity: 0.99;
  font-weight: 700;
  margin-bottom: 1.16em;
  letter-spacing: 0.01em;
  text-shadow: 0 1.5px 8px #fffad6a7;
}

.badge {
  display: inline-block;
  background: linear-gradient(90deg,#fffbe1cc 65%,#ffeebbcc 100%);
  color: #da9100;
  font-weight: 700;
  padding: 0.22em 0.88em;
  border-radius: 1.15em;
  margin: 0.9em 0.13em 0 0.13em;
  font-size: 1em;
  box-shadow: 0 1.5px 8px #ffd52f30, 0 0.5px 2px #c29b0017;
  border: 1.5px solid #ffe59c70;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}

.badge:hover {
  background: linear-gradient(90deg,#ffeebb 60%,#fffbe1cc 100%);
  color: #e28b00;
}

.divider {
  color: #b1b1b1;
  font-size: 0.95em;
  padding: 0 0.67em;
}

.alpha-banner {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #ffeb3b;
  color: #000;
  text-align: center;
  padding: 0.5rem;
  font-weight: bold;
  z-index: 1000;
}
/* push page content down so it’s not covered */
body {
  padding-top: 2.5rem; /* adjust to match banner height */
}

#tutorialArrow {
  position: absolute;

  /* 🔧 Resize */
  width: 100px;         /* Increase width */
  height: auto;         /* Maintain aspect ratio */

  /* 📍 Reposition */
  top: calc(94% - 4em);   /* Move it UP from the message box */
  left: calc(88% - 2em);  /* Move it LEFT from the message box */

  z-index: 1001;

  /* 💥 Animation */
  animation: throb 1.2s infinite ease-in-out;
  transform: rotate(15deg);
  transform-origin: center;
}

@keyframes throb {
  0%   { transform: scale(1) rotate(15deg); }
  50%  { transform: scale(1.2) rotate(15deg); }
  100% { transform: scale(1) rotate(15deg); }
}

.hidden {
  display: none !important;
}

#mascot-img {
  position: fixed;
  top: 50%;
  left: calc(50% + 0px); /* Adjust as needed */
  transform: translateY(-50%);
  width: 10em;             /* Or height: 180px if preferred */
  z-index: 999;
  opacity: 1;
  transition: none;
  filter: drop-shadow(0 10px 18px #ffd86b60);
}

@keyframes bounceWiggle {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-6px) rotate(0deg); }
  50%  { transform: translateY(-6px) rotate(-3deg); }
  75%  { transform: translateY(-6px) rotate(3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

#mascot-wrapper {
  position: fixed;
  top: 25%;
  left: calc(50% + 200px);
  transform: translateY(-50%);
  z-index: 999;
}

#mascot-img {
  width: 15em;
  animation: bounceWiggle 6s ease-in-out infinite;
  transform-origin: center bottom;
}

.demo-btn {
  background-color: #f0c000;
  border: 2px solid #aa8800;
  animation: pulse 1.2s infinite;
}
.demo-highlight {
  background-color: #f0c000;
  border: 2px solid #aa8800;
  animation: pulse 1.2s infinite;
  color: #000;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 5px #f0c000; }
  50% { box-shadow: 0 0 15px #f0c000; }
}