* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
}


body {
  background-image: url(../img/background\ black\ cat.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
}

header h1 {
  font-size: 2rem;
  color: white;
  margin-left: 20px;
  margin-top: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  color: white;
}

.navItems {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-right: 20px;
}

.navItems li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navItems li a:hover {
  text-decoration: underline;
}

form input[type="button"] {
  background: transparent;
  border: 1px solid white;
  padding: 8px 16px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

form input[type="button"]:hover {
  background: white;
  color: black;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 80px; 
}

.container {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 0 30px rgba(0,0,0,0.2);
  width: 350px;
}

.container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.box input[type="email"],
.box input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none;
}

.box button {
  width: 100%;
  padding: 10px;
  background: #111;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.box a {
  color: white;
  font-size: 0.9em;
  text-decoration: none;
  margin-left: 25px;
  margin-bottom: 10px;
  margin-top: 10px;
  display: inline-block;
}

.box p a {
    margin: auto;
    padding: 5px;
    text-align: center;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
  display: none;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .logo { padding: 0; }
  .menu-toggle { display: block;
  margin-left: 17rem;
  margin-top: 0.8rem;
  font-size: 30px;
 }

  nav { top: 80px; }

  .navItems {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
  }

  .header h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .container {
    width: 90%;
    padding: 20px;
  }

  form input[type="button"] {
    display: none;
  }
}