body {
  font-family: 'Poppins', sans-serif;
  background: #f5f6fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
}

input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

button {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

button:disabled {
  background: #6c757d;
}

.remember-me {
  margin-top: 10px;
  font-size: 14px;
}

.remember-me input {
  margin-right: 5px;
}

#spinner {
  font-size: 18px;
}

#login-result {
  margin-top: 10px;
}