.login-panel {
  background: #f9fafb;
  padding: 32px 28px 24px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
  min-width: 320px;
  max-width: 45em;
  margin: 0 auto;
  color: #1f2937;
}

.dark .login-panel {
  background: #1f2937;
  color: #f9fafb;
}

.login-panel h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 1px;
  text-align: center;
  background: #f59e0b;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-panel label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 1em;
  color: #1f2937;
}

.dark .login-panel label {
  color: #e5e7eb;
}

.login-panel input[type="text"],
.login-panel input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: none;
  border-radius: 6px;
  background: #e5e7eb;
  color: #1f2937;
  font-size: 1em;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dark .login-panel input[type="text"],
.dark .login-panel input[type="password"] {
  background: #374151;
  color: #f9fafb;
}

.login-panel input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #f59e0b;
}

.login-panel button {
  width: 100%;
  padding: 12px;
  background: #f59e0b;
  color: #1f2937;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.login-panel button:hover {
  background: #d97706;
}
