.sms-checkbox {
    margin: 10px 0 0 5px;  
}

#SMSFooterSignup {
    margin-top: var(--spacing-6);
}

.sms-submit-wrapper {
    top: 32%;
}

  /* Style for the modal */
  .modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    padding: 20px;
    text-align: center;
    width: 30%;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 25px;
    outline: none;
  }

    /* Media query for screens smaller than 1000px */
  @media (max-width: 1000px) {
    .modal-content {
      width: 95%;
    }
  }

  .modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
  }

  .modal-actions .button {
    padding: 10px 20px;
    cursor: pointer;
  }
