.form-btn-primary {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #333;
    border: 1px solid #333;
    cursor: pointer;
}
.form-btn-primary:hover {
    background: #e36f1eaa;
    
}
.form-btn-primary.active {
    color: white;
    background: #e36f1e;
    border: 1px solid #e36f1e;
}


/* ---------- primary-input -------- */ 
.font-primary-input{
    border: 1px solid #333;
    padding: 5px 10px;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 20px;
    margin: 5px 0;
    width: 100%;
}


/* ------------------ CUSTOM CHECKBOX -------------------- */
/* The container */
.custom-heckbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 16px;
  }
  
  /* Hide the browser's default checkbox */
  .custom-heckbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: -3px;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    background-color: #eee;
    border: 1px solid gray;
  }
  
  /* On mouse-over, add a grey background color */
  .custom-heckbox-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .custom-heckbox-container input:checked ~ .checkmark {
    background-color: #e36f1e;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .custom-heckbox-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .custom-heckbox-container .checkmark:after {
    left: 5px;
    top: 3px;
    width: 7px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

 
  