body {
  font-family: 'Fredoka', sans-serif;
  margin: 0;
  background-image: url("https://bin-weevils.com/assets/img/bgBlue.png");
  background-repeat: repeat;
}

.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  height: 80px;
  z-index: 1000;
}

#logo {
  width: 120px;
  cursor: pointer;
  transition: transform 0.3s ease, margin-right 0.5s ease;
  z-index: 1001;
}

.navbar-container {
  height: 80px;
  width: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-left: 0;
  box-shadow: none;
  transition: width 0.5s ease, background 0.3s ease;
}

.navbar-container.open {
  width: 500px;
  background: linear-gradient(to right, #0c2450, #4269eb);
  padding-left: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.navbar-links {
  display: flex;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-container.show-links .navbar-links {
  opacity: 1;
}

.navbar-links a {
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.navbar-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.weevil-login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background: #4b79e4;
  border: 4px solid #0f3988;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  text-align: center;
}

.weevil-login h2 {
  margin-bottom: 20px;
  color: #211892;
  font-size: 26px;
  font-weight: 600;
}

.input-group {
  display: flex;
  align-items: center;
  background: #6a68f7;
  border: 2px solid #082e74;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 10px;
}

.input-group .icon {
  font-size: 20px;
  margin-right: 10px;
}

.input-group input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  outline: none;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 15px;
}

.login-options a {
  color: #0e106e;
  text-decoration: none;
}

.login-options a:hover {
  text-decoration: underline;
}

.weevil-login button {
  width: 100%;
  padding: 12px;
  background-color: #2a1fc5;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.weevil-login button:hover {
  background-color: #12146e;
}

.register-link {
  margin-top: 15px;
  font-size: 14px;
}

.register-link a {
  color: #0e106e;
  font-weight: 600;
  text-decoration: none;
}

.register-link a:hover {
  text-decoration: underline;
}

::placeholder {
  color: rgb(26, 26, 26);
}