body {
  font-family: sans-serif;
  padding: 2rem;
  background: #0e0e0e;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
}

.container {
  width: 100%;
  max-width: 500px;
}

.logo-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 150px;
  height: auto;
}

.fancy-form {
  background-color: #1b1b1b;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

.fancy-form label {
  display: block;
  margin-bottom: 6px;
  margin-top: 16px;
  font-weight: 600;
  color: #ffffffcc;
}

.fancy-form input,
.fancy-form select {
  width: 100%;
  padding: 12px;
  margin-top: 4px;
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  background-color: #2b2b2b;
  color: white;
  font-size: 15px;
  transition: all 0.3s ease;
}

.fancy-form input:focus,
.fancy-form select:focus {
  outline: 2px solid #007bff;
  background-color: #1e1e1e;
}

.fancy-form .itemRow {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.fancy-form .itemRow input {
  flex: 1;
}

#addItemBtn {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

#addItemBtn:hover {
  background-color: #666;
}

.fancy-form button[type="submit"] {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.fancy-form button[type="submit"]:hover {
  background-color: #0056b3;
}
