* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
}

.background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('https://4kwallpapers.com/images/walls/thumbs_3t/5889.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  z-index: -1;
}

.menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 5px 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border-bottom: 2px solid rgba(160, 160, 160, 0.72);
  z-index: 10;
}

.menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 60px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 2px solid rgba(160, 160, 160, 0.72);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

input {
  width: 300px;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 2px solid rgba(160, 160, 160, 0.72);
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  outline: none;
  transition: border-color 0.3s ease;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-color: #222;
  border: 2px solid rgba(160, 160, 160, 0.72);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

button:hover {
  background-color: #818181;
}
