* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.boss {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

h1 span {
  color: #00ffae;
  text-decoration: underline;
}

.container {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* 💡 this allows wrapping on small screens */
  padding: 8px 16px;
  gap: 10px;
}


.container input {
  flex: 1;
  min-width: 200px;
  max-width: 100%;
}

.container img {
  width: 28px;
  flex-shrink: 0;
}


.container img:hover {
  transform: scale(1.1);
}

button {
  background-color: #00ffae;
  color: #000;
  border: none;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

button:hover {
  background-color: #00d69f;
}

.boss button img {
  width: 24px;
}
