
   #block-assafa-occaz-content {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: #f5f5f3;
    margin: 0 auto;

    }
 
    .tfa-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #e6f1fb;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }
    .tfa-icon-wrap svg {
      width: 24px;
      height: 24px;
      stroke: #185fa5;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .tfa-title {
      font-size: 18px;
      font-weight: 500;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 6px;
    }
    .tfa-sub {
      font-size: 13px;
      color: #6b6b6b;
      text-align: center;
      margin-bottom: 2rem;
      line-height: 1.5;
    }
 
    /* Form */
    .tfa-entry-form label.js-form-required {
      font-size: 13px;
      font-weight: 500;
      color: #6b6b6b;
      display: block;
      margin-bottom: 8px;
    }
    .tfa-entry-form label.js-form-required::after {
      display: none;
    }
 
    .tfa-entry-form input.form-text {
      width: 100%;
      height: 48px;
      font-size: 22px;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-align: center;
      border: 0.5px solid rgba(0,0,0,0.25);
      border-radius: 8px;
      background: #f9f9f8;
      color: #1a1a1a;
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
      font-family: monospace;
      padding: 0 12px;
    }
    .tfa-entry-form input.form-text:focus {
      border-color: rgba(0,0,0,0.4);
      box-shadow: 0 0 0 3px #e6f1fb;
    }
 
    .description {
      font-size: 12px;
      color: #9b9b9b;
      text-align: center;
      margin: 6px 0 1.5rem;
    }
 
    /* validation */
    .form-actions {
      margin-top: 0;
    }
    .tfa-entry-form input[type="submit"].button--primary {
      width: 100%;
      height: 42px;
      background:#2c6145;
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: opacity 0.15s, transform 0.1s;
      font-family: inherit;
    }
    .tfa-entry-form input[type="submit"].button--primary:hover {
      opacity: 0.85;
    }
    .tfa-entry-form input[type="submit"].button--primary:active {
      transform: scale(0.98);
    }
 
    /* Divider + support */
    .tfa-divider {
      border: none;
      border-top: 0.5px solid rgba(0,0,0,0.1);
      margin: 1.5rem 0 1rem;
    }
    .tfa-support {
      text-align: center;
      font-size: 12px;
      color: #9b9b9b;
    }
    .tfa-support a {
      color: #185fa5;
      text-decoration: none;
      font-weight: 500;
    }