
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300&display=swap');
body, form, #text-field, input, #typing-text {
font-family: 'Montserrat', sans-serif;
}

@keyframes shake-hair {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-2px);
  }
  20% {
    transform: translateX(4px);
  }
  30% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(8px);
  }
  50% {
    transform: translateX(-10px);
  }
  60% {
    transform: translateX(12px);
  }
  70% {
    transform: translateX(-14px);
  }
  80% {
    transform: translateX(16px);
  }
  90% {
    transform: translateX(-18px);
  }
  100% {
    transform: translateX(0);
  }
}







form {
  display: flex;
  width: 80%;
  max-width: 600px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin: 15px 0;
  padding: 8px;
  min-height: 35px;
}

.feedbacktext {
    justify-content: left;
    display: flex;
    margin-right: 50px;
    margin-top: 15px;
}

.messagetext {
    justify-content: right;
    display: flex;
    margin-left: 50px;
    margin-top: 15px;
}

.feedbacktext p {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: white;
  border-radius: 0 15px 15px 15px;
  margin: 0;
}

.feedbacktext .arrow-left {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 12px 0;
    border-color: transparent white transparent transparent;
    z-index: 999;
}

.messagetext .arrow-right {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 10px;
    border-color: transparent transparent transparent #5682B2;
    z-index: 999;
}


.messagetext p {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #5682B2 !important;
    color: white;
    border-radius: 15px 0 15px 15px;
    margin: 0;
}

#message {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  line-height: 1.5;
}

.loading {
  display: none;
  align-items: center;
  justify-content: center;
}

.fa-spinner::before {
   color: #5682B2 !important; 
   font-size: 30px;
}

button {
  background-color: #5682B2;
  color: #fff;
  border: solid 2px #5682B2;
  border-radius: 50%;;
  font-size: 15px;
  font-weight: bold;
  padding: 8px;
  margin-left: 8px;
}

button:hover {
  background-color: white;
  color: #5682B2;
  cursor: pointer;
}

/* textfield */

    #text-field {
  width: 100%;
  height: auto;
 /* min-height: 100px; */
  max-width: 600px;
/*  background-color: #fff; */
/*  border: 1px solid #ccc; */
/*  border-radius: 20px; */
max-height: 300px;
overflow: scroll;
}

#typing-text {
  margin: 0;
  padding: 8px;
  font-size: 15px;
}

        
        
        body {
          min-height: 100vh;
          display: grid;
          place-items: center;
          background: hwb(60 86% 4%);
        /*  background: hwb(60 90% 4%);
          background: linear-gradient(330deg, rgba(255,255,255,1) 0%, rgba(86,130,178,0.25672275746235995) 43%, rgba(243,253,255,1) 100%);
      */
        }
 
      #react-path-1 {
          fill: #5682B2;
        }
     /*   .avatar {
          position: relative;
          width: 100%;
          height: 100%;
          border-radius: 50%;
        }
        
        .avatar::before,
        .avatar::after {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          background: #00008b;
          z-index: -1;
          animation: glow 1s ease infinite;
        }
        
        .avatar::after {
          z-index: -2;
          animation-delay: 1s;
        }
        
        @keyframes glow {
          100% {
            transform: scale(2.0);
            opacity: 0;
          }
        } */
        


