#CallMeWidget {
  position: fixed;
  bottom: 1em;
  right: 1em;
  width: 3em;
  height: 3em;
  background-image: url(../../assets/img/phone-calling.svg);
  background-size: 2em;
  background-color: var(--color-primary);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}
#CallMeWidget svg {
  width: 30px;
  height: 30px;
  fill: white;
}

#CallMeForm {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#CallMeForm label, #CallMeForm input, #CallMeForm button {
  width: 100%;
}
#CallMeForm input, #CallMeForm button {
  padding: 0.5em 1em;
  border: 1px solid var(--color-gray-2);
  border-radius: 5px;
  font-size: 1em;
}
#CallMeForm button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
}
