body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f3f2f1;
  color: #323130;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 50px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #0078d4;
  text-align: center;
}

h2 {
  margin-top: 30px;
  color: #0078d4;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  border-color: #0078d4;
  outline: none;
}

.btn {
  background-color: #0078d4;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.btn:hover {
  background-color: #005a9e;
}

.btn-secondary {
  background-color: #e1dfdd;
  color: #323130;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.hidden {
  display: none;
}

#signaturOutput {
  width: 100%;
  height: 250px;
  margin-top: 10px;
  font-family: monospace;
  white-space: pre-wrap;
}
.inline-fields {
  display: flex;
  align-items: center;
  gap: 6px;
}

.inline-fields input {
  width: 100px;
}

.inline-fields span {
  font-weight: bold;
}
