* {
  margin: 0;
  padding: 0;
  font-family: "Mulish", sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Overpass", sans-serif;
  line-height: 1.6;
}

ol {
  padding-left: 1rem;
}

.error {
  color: red;
}

.login-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  height: 100vh;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10vh;
  background-image: url("/static/img/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 90vh;
  width: 100%;
}
.login-container img {
  width: 200px;
  opacity: 0.85;
}

.chat-container .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.chat-container .header-logo {
  width: 150px;
}
.chat-container .header-logout {
  width: 20px;
}
.chat-container .chat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30vh;
}
.chat-container .chat.active {
  padding-top: 5vh;
  padding-bottom: 15vh;
}
.chat-container .chat-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 650px;
  max-width: 800px;
}
.chat-container .chat-box-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.chat-container .chat-box-header.active {
  display: none;
}
.chat-container .chat-box .chat-messages {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 800px;
  justify-content: flex-end;
}
.chat-container .chat-box .chat-messages .message {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
}
.chat-container .chat-box .chat-messages .message.bot {
  align-self: flex-start;
}
.chat-container .chat-box .chat-messages .message.bot .message-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.chat-container .chat-box .chat-messages .message.bot .message-content .streaming {
  display: inline;
  white-space: pre-wrap;
}
.chat-container .chat-box .chat-messages .message.user {
  max-width: 80%;
  background-color: #cda577;
  align-self: flex-end;
}
.chat-container .chat-box-footer.active {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  max-width: 800px;
  background-color: white;
}
.chat-container .chat-box-footer p {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 0.8rem;
}
.chat-container .chat-box-footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(30, 43, 51, 0.1);
  box-shadow: 0 4px 10px rgba(30, 43, 51, 0.1);
  background-color: white;
}
.chat-container .chat-box-footer-content textarea {
  height: 40px;
  padding: 0;
  line-height: 20px;
  resize: none;
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 5px;
  background-color: white;
}
.chat-container .chat-box-footer-content-bottom {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 1rem;
}
.chat-container .chat-box-footer-content-bottom .btn-export {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(30, 43, 51, 0.1);
  background-color: white;
  padding: 0.5rem;
  border-radius: 9999px;
  cursor: pointer;
}
.chat-container .chat-box-footer-content-bottom .btn-send {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1E2B33;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.chat-container .chat-box-footer-content-bottom .btn-send img {
  height: 20px;
}

.login-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 6rem 6rem;
  border-radius: 20px;
  min-width: 300px;
  max-width: 300px;
  background-color: white;
  opacity: 1;
}
.login-box h1 {
  padding-top: 2rem;
}
.login-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-box form input[type=text],
.login-box form input[type=password] {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  min-width: 300px;
}
.login-box form input[type=text]:focus,
.login-box form input[type=password]:focus {
  border-color: #1E2B33;
}
.login-box form button {
  background-color: #f8a914;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.login-box form button:hover {
  background-color: rgb(210.7231404959, 139.8842975207, 6.2768595041);
}

/*# sourceMappingURL=main.css.map */
