/* Set up the page layout */
body {
    font-family: 'JetBrains Mono', monospace;
  margin: 0;
    padding: 0;
    background-color: #854dee;
}

.main_page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /* Style the form */
  .form {
    margin: 5% 5% 5% 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(238, 7, 7, 0.658);
  }
  
  .form h1 {
    margin: 0;
    font-size: 32px;
    text-align: center;
    color: #333;
  }
  
  .form input {
    padding: 10px 0 10px 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    font-size: 16px;
    width: 100%;
  }
  
  .form input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  
  .form button {
    margin-top: 10px;
    background-color: #008CBA;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
  }
  
  .form button:hover {
    background-color: #005f6b;
  }
  
  /* Style the chat messages */
  .response {
    margin: 5% 5% 5% 5%;
    padding: 20px;
    width: 80%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* overflow-y: scroll; */
  }
  
  .response p {
    /* margin: 10px 0 0 0; */
    font-size: 16px;
    color: #333;
  }
  
  /* Style the footer */
  .footer {
    margin: 0 0 30px 0;
    font-size: 27px;
    color: #000000;
    text-align: center;
  }

  .footer a {
    color: #fffefe;
    text-decoration: none;
  }
  