#loginBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 9998;
}

#loginOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#loginOverlay form {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 32px;
  width: 100%;
  max-width: 600px;
}
#loginOverlay input {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 16px;
  height: 48px;
}
#loginOverlay input:focus {
  outline: none;
  border-color: #2563eb;
}
#loginOverlay button {
  width: 100%;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px;
}

.toggle-eye {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

#loginOverlay p {
  margin-top: 0.5rem;
  text-align: center;
}

#loginOverlay a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #2563eb;
  font-size: 14px;
  text-decoration: none;
}

#loginOverlay a:hover {
  text-decoration: underline;
}
