/* === admin-form.css === */

.container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input[type="text"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  background-color: white;
}

textarea {
  height: 500px;
  resize: vertical;
}

.navigation-admin {
  margin-top: 2rem;
  text-align: center;
}

.admin-link-button {
  background-color: #28a745;
  color: white;
  transition: background 0.3s;
}

.admin-link-button:hover {
  background-color: #218838;
}