body {
  background: #23272e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mute Button Style */
#mute-btn {
  position: fixed;
  display: none; /*Hide first*/
  top: 15px;
  right: 15px;
  z-index: 9999;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}
/* Mute button end */

/* Fanni password */
#dontimpo {
  transition: transform 0.4s ease;
  z-index: -1;
}

.login-card {
  position: relative; /* Add this */
  padding: 2rem 2.5rem;
  margin: 0rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #2e323a;
  width: 100%;
  max-width: 400px;
}

.center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.don-title {
  font-family: "Impact", "Arial Black", Arial, sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.18em;
  color: #eaf6fb;
  padding: 18px 0 12px 70px;
  margin: 0 auto -12px auto; /* negative margin to "touch" the card */
  border-radius: 12px 12px 0 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #17c0de, 4px 4px 8px #000;
  width: 100%;
  max-width: 400px;
}

.don-timpo {
  position: absolute;
  top: -72px;
  left: 10px;
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.input-field input[type="text"],
.input-field input[type="password"] {
  color: #eaf6fb;
  font-size: 20px;
}

.login-button {
  background-color: #17c0de;
}

.login-button:hover {
  background-color: #129bb4;
}

/*No signups*/
.no-signups-banner {
  position: fixed;
  top: 62px;
  right: 20px;
  background: linear-gradient(135deg, #17c0de 70%, #139ab8 100%);
  color: #fff;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 0.5rem 2.2rem;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  transform: rotate(30deg);
  z-index: 1000;
  text-shadow: 1px 1px 4px #23272e;
  pointer-events: none;
}
.no-signups-banner:hover {
  color: #790000;
}
