@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Open Sans";
    padding: 5px;
}

button {
    font-family: 'Open Sans', sans-serif;
    background-color: #0366d6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: none;
}

.reset-button {
    font-family: 'Open Sans', sans-serif;
    background-color: lightgrey;
    color: black;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: none;
}

.signature-pad {
    width: 100%;
    height: 100%;
  }

.signature-container {
    width: 600px;  /* or any default size you want */
    height: 300px;
    margin-top: 5px;
    margin-bottom: 10px;
  }

.text-input {
    width: 300px;
    font-size: 12pt;
    font-family: "Open Sans";
}

.cf-turnstile {
  width: 300px;
}


  /* Full-width on mobile */
@media only screen and (max-width: 768px) {
    .text-input {
        font-size: 16pt;
        width:100%;
    }
    .cf-turnstile {
      width: 100% !important;
    }
    .signature-container {
      width: 94vw;
      height: 47vw;

    }

  }