* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url(./img/한식.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.wrap {
  width: 100%;
  max-width: 600px;
  margin: auto;
  height: 100vh;
  background: linear-gradient(180deg, #ffc700 0%, #e97f04 100%);
  position: relative;
  border-radius: 1rem;
  opacity: 0.9;
}

h1 {
  padding: 1rem;
  text-align: center;
  color: white;
}
.guide_chat {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  color: white;
}
.guide_chat > label {
  margin: 0.5rem 0;
}
.guide_chat > input {
  margin: 0.5rem 0;
  border: none;
  outline: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.guide_chat > input:focus {
  border: 1px solid rgb(42, 193, 188);
}

.guide_chat button {
  margin-top: 3rem;
  background-color: white;
  border: none;
  padding: 1rem 0;
  border-radius: 0.5rem;
  cursor: pointer;
  color: black;
}
.chat_con {
  background-color: #eaeaea;
  border-radius: 0.5rem;
  margin: 1rem;
  padding: 1rem;
  height: calc(100vh - 250px);
  overflow-y: scroll;
}
.loder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chat_message > p {
  background-color: antiquewhite;
  padding: 1rem;
  border-radius: 1rem;
  margin: 0.5rem 0;
}
.chat_message .assistant {
  background-color: white;
}
.chat-input {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  position: absolute;
  bottom: 100px;
  width: 100%;
}
.chat-input > input {
  padding: 1rem;
  flex: 1;
  outline: none;
}
.chat-input button {
  border: none;
  margin-left: 0.5rem;
  cursor: pointer;
}
.kakaoAd {
  background-color: #eaeaea;
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
