/* ---------- Basis ---------- */
body {
  margin: 0;
  height: 100vh;
  background: #0b0c10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  color: #fff;
}

.wrap {
  flex: 1; /* skubber footer til bunden */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ---------- Container ---------- */
.login-container {
  position: relative;
  display: inline-block;
  text-align: center;
}

/* ---------- Boss-figuren ---------- */
.boss-figure {
  position: relative;
  z-index: 1;            /* bag login-card */
  margin-bottom: -40px;  /* så nederste kant går bag login-card */
}

.boss-figure img {
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ---------- Login-kort ---------- */
.login-card {
  background: #171820;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2; /* foran figurens nederste del */
  margin: 0 auto;
  text-align: center; /* centrér indhold */
}

.field {
  margin-bottom: 15px;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #aaa;
  font-size: 14px;
}

/* Input felter centreret */
input {
  width: 80%;           /* gør dem lidt smallere end boksen */
  padding: 10px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #0f0f14;
  color: #fff;
  font-size: 15px;
  margin: 0 auto;       /* centrér */
  display: block;
}

/* ---------- Knap ---------- */
.btn {
  width: 80%;
  padding: 12px;
  background: #ffd54a;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  font-size: 16px;
  transition: background 0.2s ease;
  margin: 10px auto 0;
  display: block;
}
.btn:hover {
  background: #ffcf33;
}

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  font-size: 12px;
  color: #666; /* lidt lysere end baggrunden */
  padding: 12px 0;
}

/* ---------- Mobil ---------- */
@media (max-width: 520px) {
  .boss-figure img {
    width: 180px;
  }
  .login-card {
    width: 260px;
  }
  input,
  .btn {
    width: 90%; /* lidt bredere på mobil */
  }
}