/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  overflow: hidden;
}

/* RED MOON */
.red-moon {
  position: fixed;
  top: -520px;
  left: -640px;

  /* Big enough to dwarf the form */
  width: 1800px;

  opacity: 0.9;
  pointer-events: none;
  z-index: 1;

  transition: opacity 1.8s ease-out;
}
.red-moon.fade-out {
  opacity: 0;
}

/* WOLF */
.wolf {
  position: fixed;
  right: 0;
  bottom: 0;
  max-height: 85vh;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.8s ease-out, transform 1.8s ease-out;
  pointer-events: none;
  z-index: 2;
}

.wolf.active {
  opacity: 1;
  transform: translateX(0);
}

/* LOGIN LAYOUT */
.login-wrapper {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* LOGIN BOX */
.login-box {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(145deg, #d4af37, #b8962e);
  border-radius: 14px;
  padding: 28px 26px 30px;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.35);
  text-align: center;
}

.login-box h1 {
  color: #000;
  margin-bottom: 18px;
  font-size: 1.6rem;
  font-weight: bold;
}

/* FORM */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-form input {
  height: 48px;
  padding: 0 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
}

.login-form input::placeholder {
  color: #555;
}

/* LOGIN BUTTON */
.login-btn {
  margin-top: 10px;
  height: 48px;
  border-radius: 999px;
  background: #000;
  color: #d4af37;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #000;
  cursor: pointer;
  transition: all 0.25s ease;
}

.login-btn:hover {
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.75);
  color: #fff;
}
