/**
 * All of the CSS for your public-facing functionality should be
  */
  .temfw-form_wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .temfw_form_container {
    padding: 20px;
    border: 1px solid #d7d5d5;
    border-radius: 8px;
    width: 100%;
  }
  .temfw-row-clearfix {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
  }
  .temfw_col_half {
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
  }
  .temfw_input_field {
    margin-bottom: 15px;
  }
  .temfw-from-wrap {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
  }
  .temfw_button_container {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
  }
  .temfw_checkbox__wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 10px;
    text-align: left;
  }
  .temfw-form_wrapper label {
    font-weight: 500;
    color: #000;
  }
  @media (max-width: 768px) {
    .temfw_col_half {
      width: 100%;
    }
    .temfw_form_container {
      padding: 10px;
    }
  }
  @media (max-width: 480px) {
    .temfw_input_field {
      margin-bottom: 10px;
    }
    .temfw-from-wrap {
      padding: 8px;
    }
    .temfw_button_container {
      padding: 8px 16px;
    }
  }
  .temfw-logout-link {
    text-align: right;
    margin-top: 20px;
  }
  .temfw-logout-link .temfw-logout-hover {
    color: #0073aa;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #f1f1f1;
    border-radius: 5px;
  }
  .temfw-logout-link .temfw-logout-hove:hover {
    background-color: #0073aa;
    color: #ffffff;
  }
  .temfw-history-table {
    max-width: 100%;
    overflow-x: auto;
  }
  .temfw-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }
  .temfw-table-header {
    background-color: #f8f8f8;
  }
  .temfw-table-header .temfw-table-row .temfw-table-cell {
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #eaeaea;
    font-weight: bold;
    color: #333;
  }
  .temfw-table-row {
    background-color: #ffffff;
    transition: background-color 0.3s;
  }
  .temfw-table-row:nth-child(even) {
    background-color: #f9f9f9;
  }
  .temfw-table-row:hover {
    background-color: #f1f1f1;
  }
  .temfw-table-row .temfw-table-cell {
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #555;
  }
  .temfw-table-row .temfw-table-cell[data-label]:before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
  }
  .temfw_title_container h2 {
    font-size: 22px;
    font-weight: 600;
  }
  .temfw_plan {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .temfw_coupon {
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transition: transform 0.3s;
    flex: 0 0 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
  }
  .temfw_coupon:hover {
    transform: scale(1.02);
  }
  .temfw_container {
    margin-bottom: 15px;
  }
  .temfw_container .temfw-form-data {
    font-size: 24px;
    color: #333;
    margin: 0;
  }
  .temfw_container .temfw-container-data {
    font-size: 20px;
    color: #0073aa;
    margin: 10px 0;
  }
  .temfw_container {
    font-size: 16px;
    color: #666;
  }
  .temfw_expire {
    font-size: 16px;
    color: #666;
  }
  .temfw-button-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none !important;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-right: 10px;
  }
  .temfw-button-container:hover {
    background-color: #005177;
  }
  .temfw-already-purchased {
    display: inline-block;
    margin-top: 10px;
    color: #999;
    font-size: 16px;
  }
  #temfw_loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .temfw-spinner {
    border: 16px solid #F3F3F3;
    border-top: 16px solid #3498DB;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  @-webkit-keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .temfw-hidden {
    display: none;
  }
  .temfw-account_details {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  .temfw-account_details .temfw-accounts-text {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .temfw-input_field {
    margin-bottom: 15px;
  }
  .temfw-input,
  .temfw-textarea,
  .temfw-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .temfw-heading,
  .temfw-subheading {
    font-size: 1.5em;
    margin: 10px 0;
  }
  .temfw-button-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-size: 20px;
  }
  .temfw-button-wrapper .temfw-button {
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    flex-grow: 1;
    padding: 10px 0;
    background-color: #ebebeb;
    color: #333;
    text-decoration: none;
    text-align: center;
  }
  .temfw-button-wrapper .temfw-button:not(:last-child) {
    margin-right: 4px;
  }
  .temfw-table__wrap {
    border: 1px solid #ddd;
    table-layout: fixed;
    width: 100%;
  }
  .temfw-table__wrap td,
  .temfw-table__wrap th {
    padding: 8px;
    background-color: unset !important;
  }
  .temfw-table__wrap th {
    border: 0;
    border-bottom: 1px solid #575656;
  }
  .temfw-table-responsive {
    overflow-y: auto;
    width: 100%;
  }
  .temfw-btn--small {
    padding: 3px 12px !important;
    font-size: 13px;
    border-radius: 8px !important;
    overflow: hidden;
  }
  .temfw-btn-primary {
    background: #2271b1 !important;
    color: #fff !important;
  }
  .temfw-btn--wrap {
    display: flex;
    gap: 5px;
    align-items: center;
  }
  .temfw-table__wrap tbody>:nth-child(odd) {
    background-color: #f6f7f7 !important;
  }
  @media (max-width: 768px) {
    
    .temfw-heading,
    .temfw-subheading {
      font-size: 1.2em;
      text-align: center;
    }
    .temfw-button-wrapper {
      flex-direction: column;
      width: 100%;
      align-items: stretch;
    }
    .temfw-button {
      padding: 12px;
      font-size: 1.2em;
    }
  }
  @media (max-width: 480px) {
    .temfw-heading,
    .temfw-subheading {
      font-size: 1em;
    }
    .temfw-button-wrapper {
      gap: 10px;
    }
    .temfw-button {
      font-size: 1em;
      padding: 8px 12px;
    }
  }
  .temfw-tab-content {
    display: none;
  }
  .temfw-tab-content.active {
    display: block;
  }
  .temfw-radio,
  .temfw-checkbox {
    margin-right: 10px;
  }
  @media (max-width: 768px) {
    .temfw-account_details {
      padding: 15px;
    }
    .temfw-account_details.temfw-accounts-text {
      font-size: 1.3em;
    }
    .temfw-input_field {
      margin-bottom: 10px;
    }
  }
  @media (max-width: 480px) {
    .temfw-account_details h2 {
      font-size: 1.2em;
    }
  }
  #temfw-account-details-form {
    display: none;
  }
  .temfw-account-details-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
  }
  .temfw-accounts-text {
    margin: 0;
  }
  #temfw-edit-account-details {
    padding: 8px 16px;
    background-color: #0073AA;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  #temfw-edit-account-details:hover {
    background-color: #005177;
  }
  .temfw-submit-profile {
    padding: 6px;
    background-color: #0073AA;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
  }
  .temfw-submit-profile:hover {
    background-color: #005177;
  }
  .temfw-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
  }
  .temfw-payment-field {
    display: flex;
    margin-bottom: 15px;
  }
  .temfw-recipt-details {
    font-weight: bold;
    width: 40%;
    text-align: left;
    color: #333;
  }
  .temfw-display-recipt,
  .temfw-display-field {
    width: 60%;
    text-align: right;
    color: #555;
  }
  .temfw-primary-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  .temfw-primary-button:hover {
    background-color: #005f8c;
  }
  .temfw-primary-button:active {
    background-color: #004a70;
  }
  .temfw-primary-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #004a70;
  }
  #temfw-message-area {
    display: none;
    color: red;
    margin-top: 10px;
    font-weight: bold;
  }
  #temfw-card-element {
    display: block;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background-color: #f7f7f7;
    margin-top: 10px;
  }
  #temfw-card-errors {
    color: #e5424d;
    font-size: 14px;
    margin-top: 5px;
  }
  .temfw-subscription-summary {
    width: 100%;
    border-collapse: collapse;
    background-color: #f9f9f9;
    margin-top: 10px;
  }
  .temfw-subscription-summary td {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
  }
  .temfw-label {
    font-weight: bold;
    color: #333;
  }
  .temfw-value {
    color: #555;
    text-align: right;
  }
  .temfw-total td {
    border-top: 2px solid #333;
    font-size: 1.1em;
    color: #333;
  }
  .temfw-w-form-control {
    width: 100%;
    padding: 10px !important;
    line-height: 1.37 !important;
    min-height: 41px !important;
    border-radius: 8px !important;
  }
  .temfw-radio-option {
    display: inline-block;
    margin-right: 100px;
  }
  #temfw_cod_submit {
    background-color: #0073e6;
    color: white;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 22px;
    transition: background-color 0.3s ease;
  }
  #temfw_cod_submit:hover {
    background-color: #005bb5;
  }
  .temfw-coupon-container {
    display: flex;
    align-items: center;
    margin-bottom: 33px;
  }
  #temfw_coupon_code {
    width: 575px;
    padding: 10px !important;
    margin-left: 17px;
    border-radius: 5px;
  }
  #temfw_apply_coupon {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 5px 15px;
    margin-left: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  #temfw_apply_coupon:hover {
    background-color: #005bb5;
  }
  #temfw_button_container {
    background-color: #0073e6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  #temfw_button_container:hover {
    background-color: #005bb5;
  }
  .temfw-w-form {
    width: 100%;
  }
  #temfw_button_container {
    background-color: #0073AA;
    margin-top:10px;
  }
  .temfw-subscription-table {
    width: 100%;
    border-collapse: collapse;
  }
  .temfw-plan-name {
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
  }
  #temfw-subscription-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .temfw-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    line-height: 13px;
  }
  #temfw-close-modal {
    font-size: 1.5em;
    color: #000;
    font-weight: bold;
    cursor: pointer;
  }
  #temfw-subscription-details ul {
    list-style-type: none;
    padding: 0;
  }
  #temfw-subscription-details li {
    padding: 5px 0;
  }
  #temfw-subscription-modal {
    display: none;
  }
  .temfw-subscription-label {
    font-weight: bold;
    padding: 8px;
    border: 1px solid #ddd;
  }
  .temfw-subscription-value {
    padding: 8px;
    border: 1px solid #ddd;
  }
  .temfw-pagination {
    margin-top: 20px;
    text-align: center;
  }
  .temfw-plan-image {
    max-width: 100%;
    height: 200px;
    margin-top: 10px;
    display: block;
 
  }
  .temfw_container_tem1{
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    height: auto;
  }
  .temfw-pagination .pagination-link {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #0073aa;
    cursor: pointer;
  }
  .temfw-pagination .pagination-link.active {
    background-color: #0073aa;
    color: white;
    border-color: #0073aa;
  }
  .temfw-pagination .pagination-link:hover {
    background-color: #005177;
    color: white;
  }
  @media screen and (max-width: 767px) {
    .temfw-table {
      display: block;
      overflow-x: auto;
    }
    .temfw-table-row {
      display: flex;
      flex-direction: column;
    }
    .temfw-table-row .temfw-table-cell {
      display: flex;
      justify-content: space-between;
      padding: 8px;
    }
    .temfw_coupon {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
    .temfw-w_a {
      width: auto;
      margin: 0 auto;
      padding: 8px 10px;
      text-align: center;
      text-decoration: none;
      color: #FC4445;
      border: 1px solid #FC4445;
      transition: all .2s ease;
    }
    #temfw_wrapper {
      width: 100%;
  }
  #temfw_pricing-tables {
      font-family: "Abel", sans-serif;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
  }
  .temfw_pricing-table {
      max-width: 300px;
      width: 100%;
      margin: 15px 0;
  }
  .temfw_pricing-table .temfw_header {
      text-align: center;
  }
  .temfw_pricing-table .temfw_title {
      text-transform: uppercase;
      padding: 15px 0;
      background: #e4e4e4;
      color: #000;
      font-size: 16px;
  }
  .temfw_pricing-table .temfw_price {
      text-transform: uppercase;
      padding: 15px 0;
      background: #f6f6f6;
      color: #000;
  }
  .temfw_pricing-table .temfw_features {
      background: #fff;
  }
  .temfw_pricing-table .temfw_signup {
      background: #fff;
      padding: 2px 0 25px 0;
      width: 100%;
      display: flex;
      justify-content: center;
  }
  .temfw_pricing-table .temfw_signup a {
      width: auto;
      margin: 0 auto;
      padding: 8px 10px;
      text-align: center;
      text-decoration: none;
      color: #FC4445;
      border: 1px solid #FC4445;
      transition: all .2s ease;
  }
  .temfw_pricing-table .temfw_signup a:hover {
      color: #fff;
      background: #FC4445;
  }
  .temfw_pricing-table.temfw_featured .temfw_header .temfw_title {
      background: #FC4445;
      color: #fff;
      font-size:21px;
  }
  .temfw_pricing-table.temfw_featured .temfw_signup .temfw_a-w {
      background: #FC4445;
      color: #fff;
      font-size:21px;
      text-decoration:none !important;
  }
  .temfw_pricing-table.temfw_featured .temfw_signup .temfw_a-w:hover {
      color: #FC4445;
      background: #fff;
  }
    .temfw-span {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #6ab04c;
      color: #fff;
      padding: 4px 20px;
      font-size: 18px;
      border-radius: 5px;
    }
    .temfw-w-button {
      border: none;
      width: 100%;
      padding: 12px 35px;
      margin-top: 1rem;
      background-color: #6ab04c;
      color: #fff;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
    }
    .temfw_pricing {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .temfw_pricing .temfw-plan {
      background-color: #fff;
      padding: 2.5rem;
      margin: 12px;
      border-radius: 5px;
      text-align: center;
      transition: 0.3s;
      cursor: pointer;
    }
    .temfw_pricing .temfw-popular {
      border: 2px solid #6ab04c;
      position: relative;
      transform: scale(1.08);
    }
  .temfw_login_screen {
    margin-left:200px;
      background: linear-gradient(90deg, #5D54A4, #7C78B8);
      position: relative;
      width: 360px;
      box-shadow: 0px 0px 24px #5C5696;
  }
  .temfw_login_screen__content {
      z-index: 1;
      position: relative;
      height: 100%;
  }
  .temfw_login_screen__background {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      -webkit-clip-path: inset(0 0 0 0);
      clip-path: inset(0 0 0 0);
  }
  .temfw_login_screen__background__shape {
      transform: rotate(45deg);
      position: absolute;
  }
  .temfw_login_screen__background__shape1 {
      height: 520px;
      width: 520px;
      background: #FFF;
      top: -50px;
      right: 120px;
      border-radius: 0 72px 0 0;
  }
  .temfw_login_screen__background__shape2 {
      height: 220px;
      width: 220px;
      background: #6C63AC;
      top: -172px;
      right: 0;
      border-radius: 32px;
  }
  .temfw_login_screen__background__shape3 {
      height: 540px;
      width: 190px;
      background: linear-gradient(270deg, #5D54A4, #6A679E);
      top: -24px;
      right: 0;
      border-radius: 32px;
  }
  .temfw_login_screen__background__shape4 {
      height: 400px;
      width: 200px;
      background: #7E7BB9;
      top: 420px;
      right: 50px;
      border-radius: 60px;
  }
  .temfw_login_form {
      padding: 50px;
      padding-top: 64px;
  }
  .temfw_login__field {
      padding: 20px 0px;
      position: relative;
  }
  .temfw_login__icon {
      position: absolute;
      top: 30px;
      color: #7875B5;
  }
  .temfw_login__input {
      border: none;
     border-radius:10px;
      background: none;
      padding: 10px;
      padding-left: 24px;
      font-weight: 700;
      width: 100%;
      transition: .2s;
  }
  .temfw_login__input:active,
  .temfw_login__input:focus,
  .temfw_login__input:hover {
      outline: none;
      border-bottom-color: #6A679E;
  }
  .temfw_login__submit {
      background: #fff;
      font-size: 14px;
      margin-top: 30px;
      padding: 16px 20px;
      border-radius: 26px;
      border: 1px solid #D4D3E8;
      text-transform: uppercase;
      font-weight: 700;
      display: flex;
      align-items: center;
      width: 100%;
      color: #4C489D;
      box-shadow: 0px 2px 2px #5C5696;
      cursor: pointer;
      transition: .2s;
  }
  .temfw_login__submit:active,
  .temfw_login__submit:focus,
  .temfw_login__submit:hover {
      border-color: #6A679E;
      outline: none;
  }
  .temfw_button__icon {
      font-size: 14px;
  }
  @media (max-width: 768px) {
    .temfw_login_screen {
      margin-left: 0;
      width: 90%;
      box-shadow: 0px 0px 16px #5C5696;
    }
  }
  @media (max-width: 480px) {
    .temfw_login_screen {
      margin-left: 0;
      width: 100%;
      box-shadow: none;
    }
  }
  .temfw_login_container_temp2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #2d3e3f;
    width: 350px;
    height: 400px;
    padding-bottom: 20px;
    position: absolute;
    left: 37%;
    margin: auto;
    padding: 70px 50px 20px 50px;
  }
  .temfw_login-container {
    position: relative;
    width: 22.2rem;
  }
  .temfw_form-container-tem2 {
    border: 1px solid hsla(0, 0%, 65%, 0.158);
    box-shadow: 0 0 36px 1px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(320px);
    z-index: 99;
    padding: 2rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .temfw_login-container form input {
    display: block;
    padding: 14.5px;
    width: 100%;
    outline: none;
    background-color: #9191911f;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    font-size: 15px;
    backdrop-filter: blur(15px);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  .temfw_placeholder {
    color: black;
    background-color: white;
  }
  .temfw_login-container form button {
    background-color: var(--primary-color);
    color: var(--color);
    display: block;
    padding: 13px;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.1s ease-in-out;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
  }
  .temfw_login-container form button:hover {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
  }
  .temfw_circle {
    width: 8rem;
    height: 8rem;
    background: var(--primary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
  }
  .temfw_illustration {
    position: absolute;
    top: -5%;
    right: -2px;
    width: 90%;
  }
  .temfw_circle {
    top: 0;
    left: 0;
    z-index: -1;
    transform: translate(-45%, -45%);
    -webkit-transform: translate(-45%, -45%);
    -moz-transform: translate(-45%, -45%);
    -ms-transform: translate(-45%, -45%);
    -o-transform: translate(-45%, -45%);
  }
  .temfw_circle-two {
    bottom: 0;
    right: 0;
    z-index: -1;
    transform: translate(45%, 45%);
    -webkit-transform: translate(45%, 45%);
    -moz-transform: translate(45%, 45%);
    -ms-transform: translate(45%, 45%);
    -o-transform: translate(45%, 45%);
  }
  .temfw_reg_log{
    color:black;
  }
  .temfw_reg_tag{
    color:blue;
  }
  @media (max-width: 768px) {
    .temfw_login_container_temp2 {
      width: 90%;
      height: auto;
      left: 5%;
    }
    .temfw_login-container {
      width: 18rem;
    }
    .temfw_login-container form input,
    .temfw_login-container form button {
      font-size: 14px;
    }
  }
  .temfw_opacity {
    opacity: 0.6;
  }
  .temfw_theme-btn-container {
    position: absolute;
    left: 0;
    bottom: 2rem;
  }
  .temfw_reg_templ_container2{
    background: #ADCECF;
    width: 485px;
    height: auto;
    padding-bottom: 20px;
    margin: auto;
    padding: 70px 50px 20px 50px;
  }
  .temfw_reg_templ_box{
    width: 360px;
    margin-top: 26px;
    font-family: verdana;
    font-size: 16px;
  }
  .temfw_reg_templ_box label{
    font-weight: bold;
  }
  .temfw_reg_btn{
    margin-top:10px;
  }
  .temfw_temp-reg{
    font-weight: bold;
  }
  .temfw_temp-reg a{
   color:#0073AA;
  }
  .temfw_tem3-login-box {
    margin-left: 130px;
    width: 500px;
    padding: 40px;
    background: rgba(114, 150, 217, 0.5); 
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6); 
    border-radius: 10px; 
  }
  .temfw_tem3-login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color:black;
    text-align: center;
  }
  .temfw_tem3-login-box .temfw_user-box {
    position: relative;
  }
  .temfw_tem3-login-box .temfw_user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color:black;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
  }
  .temfw_tem3-login-box .temfw_user-box label {
    font-weight: bold;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color:black;
    pointer-events: none;
    transition: .5s;
  }
  .temfw_tem3-login-box .temfw_user-box input:focus ~ label,
  .temfw_tem3-login-box .temfw_user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #03E9F4;
    font-size: 12px;
  }
  .temfw_reg_tep3{
    color:black;
    font-weight: bold;
  }
  .temfw_reg_tep3 a{
    color:#0073AA;
  }
  .temfw-title-a{
    color: white;
    text-decoration: none ! important;
    font-size: 25px;
  }
  .temfw-show-error{
    color: red; 
    display: none;
  }
  @media (max-width: 767px) {
    .temfw_tem3-login-box {
      margin: 20px auto;
      width: 90%;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }
    .temfw_tem3-login-box h2 {
      font-size: 18px;
    }
    .temfw_tem3-login-box .temfw_user-box input {
      font-size: 14px;
      margin-bottom: 20px;
    }
    .temfw-title-a {
      font-size: 14px;
    }
  }
  @media (max-width: 1024px) {
    .temfw_reg_templ_container2 {
      width: 90%;
      padding: 50px 30px 20px 30px;
    }
    .temfw_reg_templ_box {
      width: 80%;
      font-size: 14px;
    }
    .temfw_theme-btn-container {
      position: static;
      margin-top: 20px;
      text-align: center;
    }
  }
  @media (max-width: 767px) {
    .temfw_reg_templ_container2 {
      width: 95%;
      padding: 40px 20px 20px 20px;
    }
    .temfw_reg_templ_box {
      width: 100%;
      font-size: 14px;
      margin-top: 20px;
    }
    .temfw_theme-btn-container {
      position: static;
      margin-top: 15px;
      text-align: center;
    }
    .temfw_reg_btn {
      margin-top: 15px;
    }
  }
  @media (max-width: 480px) {
    .temfw_reg_templ_container2 {
      padding: 30px 15px 15px 15px;
    }
    .temfw_reg_templ_box {
      font-size: 12px;
    }
    .temfw_theme-btn-container {
      margin-top: 10px;
    }
  }
  .temfw-span2 {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #080A07;
    color: #fff;
    padding: 4px 20px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
  }
  .temfw_pricing .temfw-popular2 {
    border: 2px solid #080A07;
    position: relative;
    transform: scale(1.08);
  }
  
  .temfw-w-button2 {
    border: none;
    width: 100%;
    padding: 17px 4px;
    margin-top: 1rem;
    background-color: #10140F;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none !important;
  }
  .temfw-button {
    color: black;
    background-color: transparent;
    border: 1px solid #ccc;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .temfw-button.active {
    color: white;
    background-color: #0B5B80;
    border-color: #0073AA;
  }
  .temfw-user-checkbox{
    margin-left:10px;
  }
  .temfw-temp2-lable{
    color: black;
    font-size: 17px;
  }
  .temfw_pro_name{
    font-size: 32px;
    color: black;
    font-weight: bold;
    text-decoration:none !important;
  }
  .temfw_pro_temp2{
    text-decoration:none !important;
    font-size:21px;
    color:white;
  }
  .temfw_product_image{
    padding:10px;
  }
  .temfw-bold-name {
    font-weight: bold;
  }