.fido .searchBox {
  display: flex;
  align-items: center;
  border: 1px solid #dcdcdc;
  border-radius: 24px;
  padding: 5px 20px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: fit-content;
  overflow: hidden;
}

.fido .searchBox img {
  height: 35px;
  margin-right: 8px;
}

.fido input[type='text'] {
  border: none;
  outline: none;
  flex: 1;
  padding: 10px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0);
  color: black;
}

.fido input[type='text']::placeholder {
  color: #a9a9a9;
}

.fido .searchInner {
  position: relative;
  display: flex;
  flex: 1;
}

.fido .searchLabel {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  font-size: 16px;
  color: #a9a9a9;
  pointer-events: none;
}

.fido input[type='text']:not(:placeholder-shown) ~ .searchLabel,
.fido input[type='text']:focus ~ .searchLabel {
  top: 7px;
  font-size: 10px;
  color: #777777;
}

.fido .searchButton {
  margin: 5px;
  background-color: white;
  border: 1px solid #dcdcdc;
  color: black;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fido .searchButton:hover {
  background-color: #eeeeee;
  transform: scale(1.05);
}

.fido .searchButton:active {
  transform: scale(1);
}

.fido .message {
  transition: height 0.5s ease-in-out;
  height: 1em;
}
