header {
  background-color: #b2853c;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px; /* ensures consistent height */
}

.logo {
  font-size: 24px;
  color: white;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  text-decoration: underline;
}

/* --- BASE LAYOUT --- */
body {
  margin: 0;
  background-color: #d3d3d3;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 80px; /* creates space below fixed header */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* --- LOGIN CONTAINER --- */
.login-container {
  display: flex;
  width: 900px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border-radius: 6px;
  overflow: hidden;
}

/* --- LEFT SIDE --- */
.login-left,
.login-right {
  padding: 60px 50px;
  flex: 1;
}

.login-left {
  background-color: #fff;
}

.login-left h2 {
  margin-bottom: 25px;
  color: #333;
  font-size: 28px;
}

.login-left form {
  display: flex;
  flex-direction: column;
}

.login-left label {
  font-size: 16px;
  margin-bottom: 8px;
  color: #555;
}

.login-left input {
  padding: 14px;
  font-size: 15px;
  border: none;
  border-radius: 25px;
  background-color: #e0e0e0;
  margin-bottom: 20px;
}

.signin-btn {
  background-color: #2d5c88;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 25px;
  font-size: 17px;
  cursor: pointer;
}

.forgot {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
  text-align: right;
  text-decoration: none;
}

/* --- RIGHT SIDE --- */
.login-right {
  background-color: #d4a434;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.login-right h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.login-right p {
  margin-bottom: 25px;
  font-size: 16px;
}

.signup-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #8c4f00;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-size: 15px;
}

.secret-button {
  background-color: #b2853c;
  color: white;
  border: none;
  padding: 12px 12px;
  border-radius: 4px;
  font-size: 14px;

}

