    body {
        margin: 0;
        padding: 0;
        padding-top: 160px; 
        height: 100vh;

        align-items: center;    
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         background: #fff8e1;
        /* gap: 20px;  */
    }
     
header {
  position: fixed;   

  top: 0;
  left: 0;
  width: 100%;
  height: auto;      
  z-index: 1000; 
 
}





.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4b2e05;
  padding: 10px 20px;
}

.header-top img#logo {

  /* height: 50px;
  width: auto;
  margin-right: 10px; */
    background: transparent;
    color: blanchedalmond;
    height:50px;
    width: auto;
      font-size: 150px;
}

.search-bar {
  display: flex;
  align-items: center;

gap: 5px;
}

.search-bar input {
  padding: 7px 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.search-bar button {
  padding: 7px 12px;
  border: none;
  background: #FFC857;
  color: black;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-weight: 600;

}


.header-top h1 {
  flex: 1;
  text-align: center;
  color: blanchedalmond;
  font-size: 28px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  margin: 0;
    letter-spacing: normal;
    /* margin-right: 50px; */
}

.plate {
  display: block;
  text-align: center;
  color: #f4e1b6;
  font-size: 15px;
  font-style: italic;
  margin-top: 4px;
}

/* NAVBAR  */
#navbar {
  width: 100%;
  background-color: #FFC857;
  height: 40px;
  position: relative;
  z-index: 9999;
}

#navbar ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  padding: 10px;
  margin: 0;
}

#navbar li {
  font-weight: bold;
}

nav ul li a {
  text-decoration: none;
  color: #5C3A21;
  font-size: 16px;
  transition: color 0.2s ease;
}

nav ul li a:hover {
  color: #B25012;
}



    /* Paragraph in body */
    .login-info {
        margin-top: 40px;
        margin-left: 20px;
        color:   #2B2B2B;
        font-family: 'poppins', sans-serif;
        text-align: center;
    }

    .login-container {
         /* margin: 20px auto 80px auto;  */
           margin: 20px auto;
        /* margin-top: 150px; */
        text-align: center;
        background: rgba(255, 255, 255, 0.95);
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        width: 380px;
           display: flex;
    flex-direction: column;
    align-items: center;     
    gap: 12px;
        /* display: flex;
        flex-direction: column;
        gap: 15px; */
    }

    /* Heading inside form */
    .login-container h2 {
        color: #D35400;
        font-size: 26px;
        margin: 0 0 10px 0;
    }

    .login-container input {
        width: 80%;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
         margin-bottom: 10px;  
 
    }

    .login-container input:focus {
        border-color: #D35400;
        outline: none;
        box-shadow: 0 0 8px rgba(211, 84, 0, 0.4);
    }

    #loginBtn {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 8px;
        background-color: #D35400;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #loginBtn:hover {
        background-color: #B03A00;
    }

    .login-links {
        margin-top: 10px;
        font-size: 14px;
    }

    .login-links a {
        color: #7F4E1E;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .login-links a:hover {
        color: #D35400;
    }
    footer {
   background: #2B2B2B;
  /* background-color: #5C4033; */
  
  color: white;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-container div {
  flex: 1 1 200px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #FFC857;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: white;
}

/* ------------------ RESPONSIVE DESIGN ------------------ */

/* Tablet Devices (max-width: 1024px) */
@media (max-width: 1024px) {

    body {
        padding-top: 140px;
    }

    .header-top h1 {
        font-size: 24px;
    }

    #navbar ul li a {
        font-size: 15px;
    }

    .login-container {
        width: 70%;
    }
}


/* Large Mobile (max-width: 768px) */
@media (max-width: 768px) {

    body {
        padding-top: 130px;
    }

    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-top h1 {
        font-size: 22px;
    }

    #navbar ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    #navbar ul li a {
        font-size: 14px;
    }

    .login-container {
        width: 80%;
        padding: 30px 20px;
    }

    .login-container input {
        width: 90%;
    }
}


/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {

    body {
        padding-top: 120px;
    }

    .header-top img#logo {
        height: 35px;
    }

    .header-top h1 {
        font-size: 20px;
    }

    .search-bar {
        width: 90%;
    }

    #navbar ul {
        flex-direction: column;
        height: auto;
        padding: 5px 0;
    }

    .login-container {
        width: 90%;
        padding: 25px 18px;
    }

    .login-container h2 {
        font-size: 22px;
    }

    #loginBtn {
        font-size: 15px;
        padding: 10px;
    }

    footer {
        text-align: center;
    }
  }