@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: white;
  }
  .container {
    border: 2px solid #000;
    padding: 20px;
    background-color: #fff;
    width: 40%;
  }
  .logos {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
  }
  .logos img {
    height: 25px;
  }
  h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  p {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
  }
  .info-gen {
    width: 80%;
  }
  .info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .info p {
    font-size: 12px;
  }
  .calta{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
  }
  input[type="text"] {
    border: 1px solid black;
    font-size: 16px;
    width: 75%;
    padding: 0 5px;
  }

  .confirm-btn {
    background-color: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #b3b2b2;
    border-radius: 3px;
    width: 35%;
    margin-right: 56px;
    margin-top: 10px;
  }
  .btnsgroup{
    display: flex;
    gap: 15px;
    width: 90%;
    margin-top: 40px;
  }
  .secondary-btn {
    background-color: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #b3b2b2;
    border-radius: 3px;
    width: 50%;
    margin-top: 10px;
  }
  .chat-btn{
    background-color: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #b3b2b2;
    border-radius: 3px;
    width: 30%;
    margin-top: 10px;
    padding: 8px 0;
  }
  .back-btn {
    background-color: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #b3b2b2;
    border-radius: 3px;
    width: 30%;
    
    padding: 2px 0;
  }