.webform-submission-digitres-partnership-application-form {
  background-color: #6BAFA2; /* Replace with your hex code */
  padding: 20px;             /* Adds spacing inside the colored area */
  border-radius: 5px;        /* Optional: rounds the corners */
}

/* Target text fields, textareas, dropdowns, and number inputs */
.webform-submission-form input[type="text"],
.webform-submission-form input[type="email"],
.webform-submission-form input[type="tel"],
.webform-submission-form input[type="number"],
.webform-submission-form textarea,
.webform-submission-form select {
  background-color: #ffffff !important; /* Forces a solid white background */
  border: 1px solid #cccccc !important;   /* Creates a solid border on all 4 sides */
  border-radius: 4px !important;         /* Optional: subtly rounds the corners */
  padding: 8px 12px !important;          /* Optional: adds breathing room inside fields */
  box-sizing: border-box !important;     /* Ensures padding doesn't break field widths */
}

/* Optional: Changes the border color when a user clicks into a field */
.webform-submission-form input:focus,
.webform-submission-form textarea:focus,
.webform-submission-form select:focus {
  border-color: #0066cc !important;      /* Change to your theme's brand color */
  outline: none !important;              /* Removes default browser glowing ring */
}

.path-webform h1 {
   font-size: 24px !important;    /* Reduces the font size; adjust as needed */
  text-align: center !important; /* Centers the title text */
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}