html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  background: #222;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Center the login box */
.center-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

/* Navbar styles */
.navbar {
  background: url('images/extra-dark-steel.png') no-repeat center center/cover;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Black Ops One', sans-serif;
  background: url('images/metal-background2.jpg') repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 5px rgb(0, 0, 0, 0.8);
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c2727;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.navbar li {
  white-space: nowrap;
}

.navbar a {
  font-family: 'Black Ops One', sans-serif;
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  padding: 0.5rem 0.75rem;
}

.navbar a:hover {
  color: #e74c3c;
}

.login-container {
  background: url('images/extra-dark-steel.png') no-repeat center center/cover;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  width: 320px;
}

.login-container h2 {
  font-family: 'black ops one', sans-serif;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.login-container label {
  font-family: 'black ops one', sans-serif;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.login-container input[type="text"],
.login-container input[type="password"] {
  font-family: 'black ops one', sans-serif;
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 4px;
  background: #444;
  color: #fff;
  font-size: 1rem;
}

.login-container button {
  font-family: 'black ops one', sans-serif;
  width: 100%;
  padding: 0.7rem;
  background: #343434;
  color: #f9f9f9;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.login-container button:hover {
  background: #000000;
}

/* Alternate box under form */
.alt-box {
  background: rgba(34, 34, 34, 0.85);
  margin: 1.5rem auto 0 auto;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 320px;
}

.alt-box p {
  font-family: 'Black Ops One', sans-serif;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.alt-btn {
  font-family: 'Black Ops One', sans-serif;
  padding: 0.6rem 1.2rem;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.alt-btn:hover {
  background: #c0392b;
}

/* Footer */
footer {
  background: #1a1a1a;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #777;
}