body {
  font-family: "Poppins", sans-serif;
  background: url('../NepPath.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: #050505;
  color: #f0f0f0;
  margin: 0;
  min-height: 100vh;
}

header {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: fixed;
  width: 94%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
  height: 50px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  margin-left: 0;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ff5a20;
  transition: width 0.3s;
}

nav a:hover { color: #ff5a20; }
nav a:hover::after { width: 100%; }

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 100px 20px 20px;
}

.form-card {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.dashboard {
  width: 100%;
  max-width: 800px;
}

.dashboard h1 {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #ccc;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

input:focus {
  border-color: #ff5a20;
  background: rgba(0, 0, 0, 0.5);
}

.action-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #ff5a20, #d93d0a);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s ease;
  box-shadow: 0 4px 15px rgba(255, 90, 32, 0.3);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 90, 32, 0.5);
}

.action-btn:active {
  transform: scale(0.95);
}

.logout-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
}

.error-msg { color: #ff4444; margin-top: 10px; text-align: center; }
.status-msg { color: #00C851; margin-top: 15px; text-align: center; font-weight: bold; }