/* Common styling for all pages */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f9ff;
  color: #333;
}

/* NAVBAR – same as login page */
.main-nav {
  background-color: #00334e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.main-nav .logo {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.main-nav ul li a:hover {
  color: #00a8e8;
}

/* Sign Up button highlight */
.main-nav .highlight {
  background-color: #00a8e8;
  padding: 8px 18px;
  border-radius: 25px;
  color: white;
}


header {
  background-color: #0077b6;
  color: white;
  padding: 15px 30px;
  text-align: center;
}

/* nav {
  background-color: #023e8a;
  text-align: center;
  padding: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
} */

nav a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 500px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  /* padding-right: 45px; */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

input, textarea, button {
  width: 90%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 6px;
  border: 2px solid #ccc;
}

button {
  background-color: #0077b6;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border: none;
  width:100%;
}

button:hover {
  background-color: #023e8a;
}

footer {
  text-align: center;
  background: #0077b6;
  color: white;
  padding: 10px;
  position: fixed;
  width: 100%;
  bottom: 0;
}
