/* Dark background to make the pink pop */
body {
  background-color: #000;
  color: #ffb7c5;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* The login box */
.login-container {
  border: 4px solid #ffb7c5;
  padding: 50px;
  background: #111;
  text-align: center;
  /* Pixel-style shadow */
  box-shadow: 8px 8px 0px #222;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  font-size: 0.8rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

/* Input styling */
input {
  background: #000;
  border: 2px solid #ffb7c5;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  width: 250px;
  margin-bottom: 25px;
  outline: none;
  text-align: center;
}

/* Button styling */
button {
  background: #ffb7c5;
  color: #000;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 0.1s;
}

button:hover {
  background: #fff;
  transform: scale(1.05);
}

button:active {
  transform: scale(0.95);
}