:root {
  --page-background: #f5f5f5;
  --card-background: #ffffff;
  --text: #333333;
  --muted: #777777;
  --border: #d8d8d8;
  --border-focus: #8c8c8c;
  --heading: #252525;
  --accent:rgb(43, 160, 163);
  --accent-hover:rgb(43, 160, 163);
  --required: #b23a3a;
  --radius: 2px;
  --content-width: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*body {*/
/*  margin: 0;*/
/*  background: var(--page-background);*/
/*  color: var(--text);*/
/*  font-family: Arial, Helvetica, sans-serif;*/
/*  font-size: 15px;*/
/*  line-height: 1.6;*/
/*}*/
.sw-fillable-form {
  margin-top:2rem;
}
.sw-fillable-form  button,
.sw-fillable-form  input,
.sw-fillable-form   select,
.sw-fillable-form textarea {
  font: inherit;
}

.sw-fillable-form  .page {
  min-height: 100vh;
  padding: 55px 20px;
}

.sw-fillable-form  .form-card {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 42px 48px 50px;
  background: var(--card-background);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.sw-fillable-form  .form-header {
  margin-bottom: 36px;
  text-align: center;
}
.sw-fillable-form h1 {
  color:rgb(0, 0, 0);
  font-family:Raleway, Arial, Helvetica, sans-serif;
  font-size:clamp(27px, 4vw, 35px);
  font-weight:700;
  line-height:1.25;
  margin:0 0 35px;
}
.sw-fillable-form h2 {
  color:rgb(0, 0, 0);
}

.sw-fillable-form .form-header p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.sw-fillable-form fieldset {
  min-width: 0;
  margin: 0 0 34px;
  padding: 27px 0 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.sw-fillable-form  legend {
  padding: 0 18px 0 0;
  color: var(--heading);
  font-size: 20px;
  font-weight: 400;
}

.sw-fillable-form  .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px 24px;
}

.sw-fillable-form  .field {
  min-width: 0;
}

.sw-fillable-form  .field-full {
  grid-column: 1 / -1;
}

.sw-fillable-form label,
.sw-fillable-form  .question-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.sw-fillable-form label span,
.question-label span {
  color: var(--required);
}

.sw-fillable-form  label small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.sw-fillable-form   input,
.sw-fillable-form  select,
.sw-fillable-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.sw-fillable-form  input,
.sw-fillable-form  select {
  height: 45px;
  padding: 0 13px;
}

.sw-fillable-form  textarea {
  display: block;
  min-height: 105px;
  padding: 11px 13px;
  resize: vertical;
}

.sw-fillable-form input::placeholder,
.sw-fillable-form  textarea::placeholder {
  color: #9a9a9a;
}

.sw-fillable-form  input:focus,
.sw-fillable-form select:focus,
.sw-fillable-form  textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(140, 109, 75, 0.12);
}

.sw-fillable-form .input-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sw-fillable-form  .date-row {
  grid-template-columns: 0.8fr 1.5fr 1fr;
}

.sw-fillable-form .address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sw-fillable-form  .address-street,
.sw-fillable-form .address-unit {
  grid-column: 1 / -1;
}

.sw-fillable-form .question {
  padding: 0 0 27px;
  margin-bottom: 27px;
  border-bottom: 1px solid #e7e7e7;
}

.sw-fillable-form .question:last-of-type {
  margin-bottom: 30px;
}

.sw-fillable-form .question-label {
  margin-bottom: 12px;
  font-weight: 600;
}

.sw-fillable-form .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}

.sw-fillable-form .radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  cursor: pointer;
  font-weight: 400;
}

.sw-fillable-form .radio-group input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
}

.sw-fillable-form .sub-label {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
}

.sw-fillable-form .captcha {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.sw-fillable-form  .captcha-box {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid var(--border);
  background: #fafafa;
  color: #888;
  font-size: 12px;
}

.sw-fillable-form .form-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

.sw-fillable-form  button {
  align-items:center;
  background-color:rgb(36, 41, 48);
  border:0;
  color:rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display:block;
  font-family:"PT Sans", Arial, Helvetica, sans-serif;
  font-size:15px;
  font-weight:400;
  justify-content:center;
  line-height:17px;
  margin:0 1rem 0 0;
  min-width: 130px;
  outline:rgba(255, 255, 255, 0.75) none 0;
  padding:13px 29px;
  position:relative;
  text-align:center;
  text-transform:uppercase;
  transition:background 160ms ease, transform 160ms ease;
  vertical-align:middle;
}
.sw-fillable-form button:hover {
  background-color:rgb(43, 160, 163);
}

.sw-fillable-form  button:active {
  transform: translateY(1px);
}

.sw-fillable-form  button:focus-visible {
  outline: 3px solid rgba(43, 160, 163, 0.35);
  outline-offset: 3px;
}

.sw-fillable-form .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 12px;
}

.sw-fillable-form .checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

.sw-fillable-form .checkbox-grid input:not([type=text]) {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.sw-fillable-form .consent {
  padding: 20px;
  border: 1px solid var(--border);
  background: #fafafa;
  font-size: 13px;
  line-height: 1.7;
}

.sw-fillable-form .consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-weight: 400;
}

.sw-fillable-form .consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 4px;
  accent-color: var(--accent);
}

.sw-fillable-form .section-note {
  margin: -8px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.sw-fillable-form .option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 10px;
}

.sw-fillable-form .option-list label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-weight: 400;
}

.sw-fillable-form .option-list input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.sw-fillable-form .condition-group {
  margin-bottom: 25px;
}

.sw-fillable-form .condition-group h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 600;
}

.sw-fillable-form .consent-list {
  margin: 0;
  padding-left: 20px;
}

.sw-fillable-form .consent-list li {
  margin-bottom: 12px;
}

@media (max-width: 700px) {
  .sw-fillable-form .option-list {
    display: grid;
    grid-template-columns: 1fr;
  }
}


@media (max-width: 700px) {
  .sw-fillable-form .checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 450px) {
  .sw-fillable-form .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .sw-fillable-form .page {
    padding: 20px 12px;
  }

  .sw-fillable-form .form-card {
    padding: 30px 22px 35px;
  }

  .sw-fillable-form .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sw-fillable-form .field-full {
    grid-column: auto;
  }

  .sw-fillable-form .input-row,
  .sw-fillable-form .date-row,
  .sw-fillable-form .address-grid {
    grid-template-columns: 1fr;
  }

  .sw-fillable-form .address-street,
  .sw-fillable-form .address-unit {
    grid-column: auto;
  }

  .sw-fillable-form .captcha {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .sw-fillable-form .form-card {
    padding: 25px 16px 30px;
  }

  .sw-fillable-form fieldset {
    padding-top: 22px;
  }

  .sw-fillable-form legend {
    font-size: 18px;
  }

  .sw-fillable-form .radio-group {
    gap: 14px;
  }

  .sw-fillable-form button {
    width: 100%;
  }
}

.sw-fillable-form .file-dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  margin: 0;
  padding: 20px;
  border: 1px dashed var(--border);
  background: #fafafa;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.sw-fillable-form .file-dropzone:hover,
.sw-fillable-form .file-dropzone:focus-within,
.sw-fillable-form .file-dropzone.is-dragover {
  border-color: var(--accent);
  background: rgba(43, 160, 163, 0.04);
}

.sw-fillable-form .file-dropzone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.sw-fillable-form .selected-files {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.sw-fillable-form .other-reason-input {
  max-width: 500px;
  margin-top: 14px;
}

/*.sw-fillable-form input:invalid:not(:placeholder-shown),*/
/*.sw-fillable-form textarea:invalid:not(:placeholder-shown) {*/
/*  border-color: var(--required);*/
/*}*/

.sw-fillable-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .sw-fillable-form .file-dropzone {
    min-height: 76px;
  }
}
