@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "JetBrains Mono", monospace;
}

.leet-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #020b05, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3cff9e;
  font-family: "JetBrains Mono", monospace;
  overflow: hidden;
}

/* CRT noise */
.leet-noise {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  opacity: 0.15;
}

/* Card */
.leet-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 2.5rem;
  border: 1px solid rgba(60, 255, 158, 0.3);
  background: rgba(0, 10, 5, 0.85);
  box-shadow:
    0 0 40px rgba(60, 255, 158, 0.25),
    inset 0 0 30px rgba(60, 255, 158, 0.1);
}

.leet-card h1 {
  margin-bottom: 0.25rem;
  font-size: 1.6rem;
}

.leet-card p {
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Inputs */
.leet-input {
  position: relative;
  margin-bottom: 1.5rem;
}

.leet-input input {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(60, 255, 158, 0.35);
  color: #3cff9e;
  font-family: inherit;
  outline: none;
}

.leet-input label {
  position: absolute;
  top: -9px;
  left: 10px;
  font-size: 0.7rem;
  background: #000;
  padding: 0 6px;
  opacity: 0.8;
}

/* Button */
.leet-card button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #3cff9e;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.leet-card button:hover {
  background: #6bffbe;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(107, 255, 190, 0.5);
}

/* Responsive */
@media (max-width: 480px) {
  .login-card {
    padding: 2rem 1.5rem;
  }

  .login-card h1 {
    font-size: 1.6rem;
  }
}