body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('background.jpg'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
  }
  
  /* Overlay with low opacity */
  body::before {
    content:"";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 22, 20, 0.762); /* Dark overlay with low opacity */
    z-index: -1; /* Ensure the overlay stays behind the content */
  }
  
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }
  
  nav .logo {
    display: flex;
    align-items: center;
  }
  
  nav .logo img {
    width: 60px;
    margin-right: 8px;
    border-radius: 20px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #ffffff; /* Optional: change text color on hover */
  }
  
  /* Add hover effect with a light red box */
  nav ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(208, 83, 83, 0.2); /* Light red color with opacity */
    border-radius: 5px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
  }
  
  nav ul li a:hover::before {
    transform: scale(1); /* Scale up to full size on hover */
  }
  
h1 {
    text-align: center;
    margin-top: 20px;
    color: rgb(189, 222, 2);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(238, 230, 230, 0.925);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #0b0b0b;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

label {
    display: block;
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: rgb(14, 13, 13);
}

button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

button:hover {
    background-color: #45a049;
}
