/* style.css */

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

header {
  background: #2c3e50;
  color: white;
  padding: 15px 20px;
}

header h1 {
  margin: 0;
  display: inline-block;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.container {
  max-width: 900px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

footer {
  text-align: center;
  margin: 30px 0;
  font-size: 0.9em;
  color: #888;
}

form input[type="text"],
form input[type="password"],
form textarea,
form select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background: #3498db;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #2980b9;
}

hr {
  border: none;
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}
