
   body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  .navbar {
    position: sticky;
    z-index: 10;
    top: 0;
  }

  .navbar-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color:#df3d8b;
    color: white;
  }

  .navbar-1 .title {
    font-size: 24px;
    font-weight: bold;
  }

  .search-bar {
    padding: 8px;
    width: 450px;
    border-radius: 15px;
    border: 1px solid #ddd;
  }

  .navbar-1 .nav-links {
    display: flex;
    align-items: center;
}

.navbar-1 .nav-links a {
    margin-right: 15px;
    color: white;
    text-decoration: none;
    margin-left: 40px;
}

.nav-links img {
    margin-left: 20px;
    margin-right:15px;
    width: 24px;
    height: 20px;
}

.nav-links img:hover {
  cursor: pointer;
  filter: brightness(0.8);
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}


.navbar-1 .nav-links a:hover {
    color: #4e49a5;
}

  .navbar-2 {
   background-color: black;
    padding: 10px;
  }

  .navbar-2 > ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
  }

  .navbar-2 ul li {
    margin-right: 0;
  }

  .navbar-2 ul li a {
    text-decoration: none;
   color: white;
    font-weight: bold;
  }

  .navbar-2 ul li a:hover {
    color: #e91e63;
  }
  .search-container {
    position: relative;
  }
  
  .search-bar {
    padding-left: 35px; 
    padding-right:3px;
    
    border: 1px solid #ccc;
    border-radius: 15px;
  }
  
  .search-container::before {
    content: "";
    background-image: url('https://cdn-icons-png.flaticon.com/128/5636/5636698.png');
    background-size: 20px 20px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }
  

  #img-content {
    position: relative; 
    background-image: url('https://wallpaperbat.com/img/618065-cosmetic-wallpaper-top-free-cosmetic-background.jpg');
  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 650px;
    width: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
  }
  
  #content {
    position: absolute;
    top: 40%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    text-align: center; 
    color: rgb(179, 37, 141); 
    
    padding: 20px;
    border-radius: 10px;
  }
  
  #content h2 {
    margin-bottom: 10px; 
    font-size: 2rem;
  }
  
  #content p {
    margin-bottom: 20px;
    font-size: 1.2rem; 
  }
  
  #content button {
    background-color: #e75b8a; 
    color: white; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 5px;
    cursor: pointer; 
  }
  
  #content button:hover {
    background-color: #e0356b; 
  }
  
  .login-page-logo .logo {
    width: 35px; 
    background-color: #df3d8b;
    
  }

  .login-page-logo {
    background-color: pink; 
    padding: 5px; 
    border-radius: 5px; 
    display: inline-block; 
}

.logo {
   
    padding: 5px; 
    border-radius: 5px; 
}

.titleColor {
  color: white;
  background-color: black;
}

.container {
  display: flex;
  flex-direction: row; 
}
/* Media Queries for Responsive Design */

/* Medium Devices (Max Width: 992px) */
@media (max-width: 992px) {
  .navbar-1 {
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: space-between;
  }

  .navbar-1 .title {
    font-size: 20px;
  }

  .navbar-1 .search-bar {
    width: 300px; /* Adjust search bar width */
    margin-top: 10px;
  }

  .navbar-1 .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .nav-links a, .nav-links img {
    margin-left: 20px; /* Reduce spacing for smaller screens */
    margin-right: 10px;
  }

  #img-content {
    height: 500px; /* Reduce height for smaller screens */
  }

  #content {
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
  }

  #content h2 {
    font-size: 1.8rem;
  }

  #content p {
    font-size: 1rem;
  }

  .search-container {
    margin-bottom: 10px;
  }
}

/* Small Devices (Max Width: 768px) */
@media (max-width: 768px) {
  .navbar-1 {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .navbar-1 .title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .navbar-1 .search-bar {
    width: 250px;
    margin-bottom: 10px;
  }

  .navbar-1 .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links a, .nav-links img {
    margin: 10px 0;
  }

  .navbar-2 > ul {
    flex-wrap: wrap; /* Allow wrapping for menu items */
    justify-content: center;
  }

  #img-content {
    height: 400px; /* Further reduce height */
  }

  #content h2 {
    font-size: 1.5rem;
  }

  #content p {
    font-size: 0.9rem;
  }

  #content button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* Extra Small Devices (Max Width: 576px) */
@media (max-width: 576px) {
  .navbar-1 {
    padding: 5px;
  }

  .navbar-1 .title {
    font-size: 16px;
    text-align: center;
  }

  .navbar-1 .search-bar {
    width: 200px;
  }

  .navbar-1 .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links a, .nav-links img {
    margin: 5px 0;
  }

  .navbar-2 > ul {
    flex-direction: column;
    align-items: center;
  }

  #img-content {
    height: 300px;
  }

  #content {
    padding: 10px;
    top: 50%;
  }

  #content h2 {
    font-size: 1.2rem;
  }

  #content p {
    font-size: 0.8rem;
  }

  #content button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .search-container::before {
    background-size: 16px 16px; /* Reduce icon size */
    width: 16px;
    height: 16px;
    left: 8px;
  }
}

/* General Alignment Fixes for Small Screens */
@media (max-width: 480px) {
  .container {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
  }

  .login-page-logo {
    width: 30px;
    padding: 5px;
  }

  .search-bar {
    width: 150px;
    font-size: 12px;
  }

  #content h2 {
    font-size: 1rem;
  }

  #content p {
    font-size: 0.7rem;
  }

  #content button {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}
