body {
  background:linear-gradient(to right, #01d3f8, #e9ecef, #01e8f4);
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: #3b3b3c;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(31, 31, 36, 0.714);
  width: 300px;
  text-align: center;
}

input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
}

button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #3498db;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #2980b9;
}
