body {
  font-family: Arial, sans-serif;
  padding: 20px;
  max-width: 700px;
  margin: auto;
  background-color: #fff;
}

header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

#absierraLogo {
  width: 60px;
  height: auto;
}

h1 {
  font-size: 1.5em;
  color: #111;
}

form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  resize: vertical;
  min-height: 60px;
}

canvas {
  display: block;
  margin-top: 10px;
  touch-action: none;
  border: 1px solid #000;
  width: 100%;
  height: 150px;
  border-radius: 4px;
}

.buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

button {
  padding: 10px 16px;
  font-weight: bold;
  background-color: #004aad;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #003a91;
}
