/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}
body {
  background: #000;
  color: #333;
  /* padding: 20px; */
}
img.site-logo {
    width: 200px;
    /* position: absolute; */
}
/* Login Page */
.login-body {
  /* background: #e9f1f7; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.login-wrapper {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 350px;
  width: 100%;
  text-align: center;
}
.login-wrapper h1 {
  margin-bottom: 25px;
  color: #ab7e3d;
}
.login-form label {
  display: block;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 5px;
}
.login-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.btn-primary {
  margin-top: 20px;
  width: 100%;
  background: #ab7e3d;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #000;
}
.note {
  margin-top: 15px;
  font-size: 0.9rem;
}
.note a { color: #004aad; }

/* Dashboard Layout */
.dashboard-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 230px;
  background: #000;
  color: #fff;
  padding: 20px;
}
.sidebar .logo {
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-align: center;
  margin-top: 30px;
}
.sidebar ul {
  list-style: none;
}
.sidebar li {
  margin-bottom: 20px;
}
.sidebar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.sidebar a:hover {
  color: #d0e3ff;
}
.logout {
  color: #ffb3b3;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 30px;
  background: #f5f7fa;
}
.main-content header h1 {
  color: #ab7e3d;
  margin-bottom: 10px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.card h3 {
  color: #ab7e3d;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .dashboard-container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}

.loginmessage{
  margin-top:20px;
}
