
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-image: url('images.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
  }
  
  h1 {
    text-align: center;
    font-size: 2.5em;
    color: #fff; /* Ensure text stands out against the background */
    margin-bottom: 20px;
  }
  
  .logo {
    position: absolute;
    align-items: center;
    font-size: 25px;
    display: flex;
    justify-content: flex-start;
    margin-left: 2rem;
    padding-top: 0.5rem;
}
.navigation{
    display: flex;
    justify-content:flex-end;
    align-items: center;
    height: 50px;
    width: '100%';
    background-color: rgb(0, 0, 0);
}
.navigation  a{
    margin-right: 50px;
    text-decoration: none;
    font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
    font-weight: bold;
    color: white;
    font-size: 15px;
    padding: 0.4rem;
    border-radius: 7px;
    opacity: 0.9;
}

.navigation a:hover{
    color: white;
    opacity: 1;
}

.navigation i{
    font-size: 10px;
}

.navigation .signin{
    background-color: white;
    color: black;
    padding: 0.3rem 1rem 0.3rem 1rem;
    border-radius: 10px;
    border: 1px solid rgb(255, 8, 8);
}

.navigation .signin:hover{
    background-color: #E980FC;
}

  
  /* Main Container */
  .container {
    max-width: 500px;
    margin: 50px auto;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background for container */
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Form */
  form {
    display: flex;
    flex-direction: column;
  }
  
  ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  li {
    margin-bottom: 20px;
  }
  
  label {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 5px;
    display: block;
  }
  
  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
  }
  
  input[type="text"]:focus,
  input[type="password"]:focus {
    outline-color: #4CAF50;
    border-color: #4CAF50;
  }
  
  input[type="button"],
  input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  input[type="button"]:hover,
  input[type="submit"]:hover {
    background-color: #45a049;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 20px;
      width: 90%;
    }
  
    .navigation a {
      font-size: 1em;
      margin: 0 15px;
    }
  
    .logo a {
      font-size: 2em;
      padding: 8px 15px;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 2em;
    }
  
    .logo a {
      font-size: 1.8em;
      padding: 6px 12px;
    }
  
    .navigation a {
      font-size: 0.9em;
      margin: 0 10px;
    }
  }
  