#login-overlay {
  position: fixed;
  inset: 0;
  background: #0d0d0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}
#login-box {
  background: #18181c;
  border: 1px solid #2e2e38;
  border-radius: 18px;
  padding: 48px 44px 44px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
#login-logo {
  font-size: 13px;
  letter-spacing: 3px;
  color: #7047A5;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
#login-title {
  font-size: 22px;
  font-weight: 700;
  color: #f0eaf8;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
#login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#login-form input {
  width: 100%;
  background: #0d0d0f;
  border: 1.5px solid #2e2e38;
  border-radius: 10px;
  padding: 13px 16px;
  color: #f0eaf8;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
#login-form input:focus {
  border-color: #7047A5;
}
#login-btn {
  width: 100%;
  background: #7047A5;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background .2s, transform .1s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}
#login-btn:hover { background: #8a5cbf; }
#login-btn:active { transform: scale(0.98); }
#login-error {
  color: #e57373;
  font-size: 13px;
  text-align: center;
  min-height: 18px;
  margin-top: -4px;
}
#login-footer {
  font-size: 11px;
  color: #444;
  margin-top: 24px;
  letter-spacing: 1px;
}
