body {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: sans-serif;
}

.login-container {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

input {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
}

button {
  width: 100%;
  padding: 15px;
  background-color: #4a4e69;
  border: none;
  color: white;
  cursor: pointer;
}
/* Add these to your style.css */
button:hover {
  background-color: #5d617e; /* Slightly lighter shade on hover */
  transition: background-color 0.3s ease;
}

input:focus {
  outline: none;
  border-color: #2d6fff; /* Highlight border on click */
}

.add-to-desktop {
  background-color: transparent;
  border: 1px solid #4a4e69;
  margin-top: 20px;
}