/* SavagePanel Login Theme */

* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle at top, #111 0%, #050505 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
}

.login-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 30px;
}

.login-card {
  background: #0f0f0f;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 0 40px rgba(0, 255, 128, 0.08);
}

.login-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #22c55e;
}

.login-title span {
  font-size: 1.6rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #9ca3af;
}

.form-group input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid #1f2937;
  background: #020202;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.form-group input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

.login-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #022c22;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login-btn:hover {
  filter: brightness(1.05);
}

.footer-text {
  margin-top: 18px;
  font-size: 0.75rem;
  text-align: center;
  color: #6b7280;
}
