/* Logo inside form */
.form-logo {
  text-align: center;
  margin-bottom: 20px;
}

.form-logo img {
  max-width: 160px;   /* adjust size */
  opacity: 0.7;       /* slightly transparent */
}

/* Form container */
form {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Headings */
form h2, form h3 {
  text-align: center;
  color: #0074D9;
  margin-bottom: 20px;
}

/* Inputs */
label {
  display: block;
  margin-top: 20px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px;
}

/* Submit button */
button[type="submit"] {
  display: block;
  margin: 40px auto 80px auto;
  padding: 12px 28px;
  background-color: #0074D9;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #005fa3;
}

.upload-section {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 80px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.upload-section h3 {
  color: #0074D9;
  margin-bottom: 10px;
}

.upload-section p {
  color: #444;
  margin-bottom: 20px;
}

.upload-section .ht-btn {
  background-color: #0074D9;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.upload-section .ht-btn:hover {
  background-color: #005fa3;
}

.signature-wrapper {
  margin-top: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.signature-label {
  font-weight: 600;
  color: #0074D9;
  display: block;
  margin-bottom: 10px;
}

.signature-area {
  position: relative;
}

#signature-pad {
  width: 100%;
  height: 180px;
  border: 2px solid #0074D9;
  border-radius: 6px;
  background: #fff;
  cursor: crosshair;
}

.signature-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
  opacity: 0.4;
}

.signature-actions {
  text-align: right;
  margin-top: 10px;
}

#clear-signature {
  padding: 8px 16px;
  background-color: #0074D9;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#clear-signature:hover {
  background-color: #005fa3;
}