body{
  background:#050505;
  color:#f8f5ec;
  font-family:system-ui;
}

.login-box, .dashboard{
  max-width:400px;
  margin:80px auto;
  background:#111;
  padding:25px;
  border-radius:14px;
  border:1px solid rgba(248,196,0,0.15);
}

h2{
  margin-bottom:15px;
}

input{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border:none;
  border-radius:8px;
  background:#1a1a1a;
  color:white;
}

button{
  width:100%;
  padding:12px;
  background:#f8c400;
  border:none;
  border-radius:10px;
  font-weight:bold;
}

button:hover{
  opacity:0.9;
}

.logout{
  display:block;
  margin-top:15px;
  text-align:center;
  color:#f8c400;
}

.error{
  color:red;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

h3 {
  margin-top: 15px;
  color: #FFD700;
  font-size: 16px;
}

label {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 8px;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: rgba(20, 20, 20, 0.8);
  color: white;
  outline: none;
}

input:focus {
  border-color: #FFD700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

button {
  margin-top: 15px;
  padding: 12px;
  border-radius: 10px;
  background: #FFD700;
  color: black;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.add-btn{
  background:#16a34a;
  color:#fff;
  padding:10px 14px;
  border:none;
  border-radius:8px;
  font-weight:700;
  cursor:pointer;
  margin-bottom:10px;
}