/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0f0f0f;
  color: #fff;
}

/* ================= NAVBAR ================= */

.navbar {
  height: 70px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  border-bottom: 1px solid #222;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
}

.brand {
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
}

.nav-right a {
  margin-left: 15px;
  text-decoration: none;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
}

.nav-right a:hover {
  background: #333;
}

/* ================= LOGIN BOX ================= */

.container {
  width: 360px;
  margin: 120px auto;
  background: #141414;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.container h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Inputs */
.container input {
  width: 94%;
  padding: 12px;
  margin-bottom: 12px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
  outline: none;
}

/* Login Button */
.container button {
  width: 100%;
  padding: 12px;
  background: #ffffff;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.container button:hover {
  background: #e5e5e5;
}

/* Help Text */
.help-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.help-text a {
  color: #4da3ff;
  text-decoration: none;
}

