.chat-bot-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.chat-bot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/jpeg;base64,/9j/4AAQSkZJRg...') center/cover;
  filter: blur(8px) brightness(0.6);
  z-index: 1;
}
.chat-bot-wrapper {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.chat-bot-header {
  text-align: center;
  margin-bottom: 30px;
}
#wrapper .chat-bot-header h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.chat-bot-content {
  width: 100%;
  max-width: 736px;
}
.chat-bot-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #FEFDFEA8;
  border-radius: 50px;
  padding: 6px 6px 6px 28px;
  width: 736px;
  max-width: 100%;
  overflow: hidden;
}
#wrapper .chat-bot-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  color: #838383;
  outline: none;
  box-shadow: none;
  margin-bottom: 0;
}
.chat-bot-input::placeholder {
  color: #999;
}
.chat-bot-submit {
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  background: #288CCC;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.chat-bot-submit svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: #fff;
}
@media (max-width: 768px) {
  .chat-bot-header h2 {
    font-size: 24px;
  }
  .chat-bot-wrapper {
    padding: 27px 15px;
    min-height: auto;
  }
  #wrapper .chat-bot-header h2 {
    font-size: 20px;
  }
  .chat-bot-header {
    margin-bottom: 15px;
  }
}