/* === GLOBAL STYLES === */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0b0b0b; /* Black background */
  color: #d4d4d4; /* Light gray text */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* === LOGIN BOX === */
.form-box {
  background-color: #0f3d0f; /* Dark green background */
  padding: 40px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  border: 1px solid #084201; /* Green border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.form-box h3 {
  color: #a8e6a8; /* Light green heading */
  margin-bottom: 20px;
}

/* === INPUTS === */
.form-box input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #084201;
  border-radius: 4px;
  background-color: #0b0b0b;
  color: #d4d4d4;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-box input::placeholder {
  color: #a8e6a8;
}

/* === BUTTONS === */
.form-box button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #084201;
  border-radius: 4px;
  background-color: #126409;
  color: #d4d4d4;
  cursor: pointer;
  font-size: 1rem;
}

.form-box button:hover {
  background-color: #1a8c1a;
}

/* === REGISTER OPTION === */
#registerOption {
  margin-top: 15px;
}

#registerOption h3 {
  margin-bottom: 8px;
  color: #a8e6a8;
}

/* === PAGE TITLE === */
h1 {
  color: #a8e6a8;
  text-align: center;
  margin-bottom: 30px;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #0f3d0f;
  color: #d4d4d4;
  border-bottom: 1px solid #084201;
  padding: 15px 0;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center; /* keeps the center element truly centered */
}

/* left section pinned to the left side */
header .left {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* center title stays perfectly centered */
header .center {
  text-align: center;
  font-size: 2rem;
  color: #d4d4d4;
}

/* style for links and site name */
header h1 {
  margin: 0;
  color: #a8e6a8;
  font-size: 1.5rem;
}

header a {
  color: #a8e6a8;
  text-decoration: none;
  font-size: 1rem;
}

header a:hover {
  text-decoration: underline;
}
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a8e6a8;
}