      body {
                font-family: 'Montserrat';
                margin-top: 30px;
      }
      select {
                font-family: 'Montserrat';
                background-color: #ffffff;
      }
      input {
                font-family: 'Montserrat';
                background-color: #ffffff;
      }
      button {
                font-family: 'Montserrat';
                background-color: #ffffff;
      }
      textarea {
                font-family: 'Montserrat';
      }
      input:focus, textarea:focus, select:focus{
        outline: none;
    }
    .cursor {
        display: none;
        animation: blink 1s infinite;
        width: 16px;
        height: 16px;
        background-color: #ccc;
        border: none;
        border-radius: 0;
        margin-left: 30px;
    }
    .blinkmessage {
        display: none;
        width: 16px;
        height: 16px;
        border: none;
        border-radius: 0;
        margin-left: 30px;
    }

    @keyframes blink {
        50% {
        opacity: 0;
    }
}
.form-group {
        display: flex;
        align-items: center;
        margin: 10px 10px auto;
}
  .ask-control {
    font-size: 18px;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #333;
    color: #333;
    width: 95%;
    margin-bottom: 1px;
    margin-left: 20px;
  }

  .form-control {
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    color: #333;
    width: 95%;
    margin-bottom: 1px;
    margin-left: 20px;
  }

  #body {
    overflow-y: auto;
  }

  .select-group {
    display: flex;
    width: 97%;
  }
