/* Reset & Base */
body{
  box-sizing: border-box
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #faf6e6;
  color: #003ea9;
  min-height: 100vh;
}

/* Header & Footer */
header, footer {
  background-color: #003ea9;
  color: white;
  padding: 1em 2em;
  text-align: center;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #003ea9;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a,
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover,
nav a:hover {
  text-decoration: underline;
  color: #8db7e2;
}

/* Logo */
.logo {
  height: 60px;
  margin-right: 20px;
}

/* Get Started Button */
.get-started {
  background-color: #ffcc00;
  color: #003ea9;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.get-started:hover {
  background-color: #e6b800;
}

/* Containers */
.container {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 90%;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #003ea9;
  color: white;
  border: none;
  padding: 0.75em 1.5em;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #8db7e2;
  color: #003ea9;
}

/* Sign In/Up Pages */
.form {
  display: flex;
  flex-direction: column;
}

h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #003ea9;
}

label {
  margin-top: 0.8rem;
  font-weight: bold;
}

input {
  padding: 0.5rem;
  margin-top: 0.3rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  margin-top: 1.5rem;
  padding: 0.7rem;
  border: none;
  background-color: #0da602;
  color: white;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #002f82;
}

.switch {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.switch a {
  color: #003ea9;
  text-decoration: none;
  font-weight: bold;
}

#loginMessage, #signupMessage {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* 404 Page */
#404body {
  background-image: url("https://media.tenor.com/18SBZln9s3AAAAAC/black-space-outer-space.gif");
  background-size: cover;
  background-position: center;
  padding: 2em;
  text-align: center;
  min-height: 100vh;
}

.error {
  font-family: Verdana, sans-serif;
  font-weight: 700;
  position: relative;
}

#404button {
  margin: 1em 0;
  background-color: #003ea9;
  color: white;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#404button:hover {
  background-color: #8db7e2;
  color: #003ea9;
}
#logonav{
  position:fixed;
  top:0;
  left:0;
}
