[class*="settings_page_ffpl-opt-in-"] {
  notice.success, div.fs-notice.updated, .notice, #wpfooter {
    display:none!important;
  }
  .fpl-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
    padding-top: 10vh;
    p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 1.2em;
      
      strong {
        color: #2271b1;
        font-weight: 600;
      }
    }
    @media (min-width: 960px) {
      transform: translateX(-10vw);
    }
    .box {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      max-width: 400px;
      padding: 20px;
      text-align: center;
      position: relative;
    }

    .logo-container {
      text-align: center;
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%);
    }

    .logo {
      width: 110px; // Adjust the size of the logo
      height: 110px; // Adjust the size of the logo
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .box-content {
      position: relative;
      margin-top: 60px; // Adjust the margin to accommodate the logo
      .fpl_email {
        width: 100%;
        line-height: 2.5;
        font-size: 18px;
      }

    }

    .button-wrap {
      margin: 20px 0;
      display: flex;
      justify-content: space-between;
      .button-1 {
        flex: 2;
        text-align: left;
      }
      .button-2{
        flex: 1;
        text-align: right;
        .small-text {
          font-size: 12px;
        }
      }
    }

    .button {
      font-size: 17px;
    }

    .btn-optin {
    }

    .btn-skip {
    }

    .details-link {
      color: #007bff;
      text-decoration: underline;
      display: block;
      margin-top: 10px;

      &:hover {
        text-decoration: none;
      }
      &:focus {
        outline-offset: 2px; // Adds some space between the link and the outline
      }
    }

    .details-content {
      display: none;
      margin-top: 20px;
      text-align: left;
      border-top: 1px solid #ccc;
      padding-top: 10px;
    }
  }
}
