body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #ddd;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header, footer {
  background-color: #1e1e1e;
  color: #aaa;
  text-align: center;
  padding: 10px 0;
}

h1 {
  font-weight: 600;
  margin: 20px 0;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #222;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
}

a {
  color: #4ea1f3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button, input[type="submit"] {
  background-color: #4ea1f3;
  border: none;
  padding: 10px 18px;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover, input[type="submit"]:hover {
  background-color: #357abd;
}

input[type="text"], input[type="password"], input[type="email"] {
  width: 100%;
  padding: 10px 8px;
  margin: 10px 0 20px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #121212;
  color: #ddd;
  font-size: 1rem;
}

footer {
  font-size: 0.8rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* === Navbar Styles === */
.navbar {
  background-color: #1e1e1e;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left, .nav-right {
  display: flex;
  gap: 1.5em;
}

.nav-left a, .nav-right a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
}

.nav-left a:hover, .nav-right a:hover {
  color: #fff;
}
