body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: radial-gradient(circle at center, #3a0057, #1a001f); 
  font-family: Arial, sans-serif;
  color: #fff;
}

.input__container {
  background: linear-gradient(135deg, #5a00cc, #9922cc); 
  padding: 25px; 
  border: 2px solid #7700cc; 
  border-radius: 8px; 
  display: flex;
  align-items: center;
  gap: 15px; 
  box-shadow: 0 4px 12px rgba(128, 0, 200, 0.6); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input__container:hover {
  transform: translateY(-3px); 
  box-shadow: 0 6px 16px rgba(160, 0, 200, 0.8);
}

.input__button {
  background-color: #7700cc; 
  color: #fff;
  border: 1px solid #9922cc;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.input__button:hover {
  background-color: #8800cc; 
  transform: scale(1.05); 
}

.input__search {
  padding: 10px;
  border: 1px solid #9922cc;
  border-radius: 5px; 
  width: 250px; 
  font-size: 16px;
  background-color: #2a002d;
  color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input__search:focus {
  border-color: #cc22cc; 
  box-shadow: 0 0 6px #cc22cc; 
}

.input__search::placeholder {
  color: #9922cc; 
}
