* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #009e7a, #00b894);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.form-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.form-card h2 {
  margin-bottom: 20px;
}

.form-card input, .form-card select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.form-card button {
  width: 100%;
  padding: 12px;
  background: #00b894;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.form-card button:hover {
  background: #009e7a;
}

.form-card p {
  margin-top: 10px;
}

.form-card a {
  color: #00b894;
  text-decoration: none;
}

.form-card a:hover {
  color: #009e7a;
}

.error {
  color: red;
  margin-bottom: 10px;
}

.dashboard {
  display: flex;
  height: 100vh;
  width: 100%;
}

.sidebar {
  width: 220px;
  background: #4e54c8;
  color: white;
  padding: 20px;
}

.sidebar h2 {
  margin-bottom: 20px;
  text-align: center;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
}

.content {
  flex: 1;
  background: #f7f8fc;
  padding: 40px;
}

.content h1 {
  margin-bottom: 10px;
  color: #333;
}

table {
  background: white;
  width: 100%;
  border-collapse: collapse;
}

table th {
  background: #4e54c8;
  color: white;
}

table td, th {
  padding: 10px;
  border: 1px solid #ddd;
}
