.admin-main {
  min-height: 70vh;
  padding: 3rem 2rem 6rem;
  display: flex;
  justify-content: center;
}

.admin-panel {
  width: 100%;
  max-width: 640px;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2.5rem;
}

.admin-panel h1 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.admin-hint {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

#login-form {
  display: flex;
  flex-direction: column;
}

#login-form label {
  color: #ccc;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}

#login-form input {
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

#login-form input:focus {
  outline: none;
  border-color: #ff4d2e;
}

#login-form button {
  margin-top: 1.75rem;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.admin-error {
  color: #ff6b4a;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  min-height: 1rem;
}

.admin-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.field-group {
  border-top: 1px solid #2a2a2a;
  padding: 1.5rem 0;
}

.field-group h2 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.field-group label {
  display: block;
  color: #ccc;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  margin-top: 0.9rem;
}

.field-group input,
.field-group textarea {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: #ff4d2e;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
  padding-top: 1.5rem;
}

.admin-actions button {
  border: none;
  cursor: pointer;
}

.cta-button.secondary {
  background: transparent;
  color: #ccc;
  border: 1px solid #444;
}

.cta-button.secondary:hover {
  background-color: #2a2a2a;
  color: #fff;
}

.admin-status {
  color: #6fcf97;
  font-size: 0.85rem;
}
