
.ntn-wrapper {
    overflow-x: hidden;
     margin: auto;
     padding: 40px 20px;
   }

   .ntn-title {
     color: #2e9f42;
     font-weight: 600;
   }

   .form-control {
     border: none;
     border-bottom: 2px solid #ccc;
     border-radius: 0;
     box-shadow: none !important;
     background-color: transparent !important;
   }
   .form-control:focus {

     background-color: transparent;
   }

   .form-control:focus {
     border-color: #2e9f42;
   }

   .date-box,
   .time-box {
     width: 60px;
     text-align: center;
     border: none;
     border-bottom: 2px solid #ccc;
     background-color: #f8f9fa;
     box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
     border-radius: 5px;
     padding: 5px 10px;
   }

   .btn-next {
     background-color: #2e9f42;
     color: #fff;
     border: none;
     border-radius: 6px;
     padding: 10px 30px;
     box-shadow: 0 5px 15px rgba(46, 159, 66, 0.4);
     transition: 0.3s ease-in-out;
   }

   .btn-next:hover {
     background-color: #248534;
   }

   .profile {
     position: absolute;
     top: 30px;
     right: 40px;
     display: flex;
     align-items: center;
     gap: 10px;
   }

   .profile img {
     width: 36px;
     height: 36px;
     border-radius: 50%;
   }

   .profile span {
     color: #0066ff;
     font-weight: 500;
   }

   @media (max-width: 576px) {
     .date-box,
     .time-box {
       width: 50px;
     }

     .profile {
       position: static;
       justify-content: end;
       margin-bottom: 20px;
     }
   }
   /* --------------------------------------------------card details */



  .payment-wrapper {

    margin: 50px auto;
    padding: 20px;
  }

  .nav-tabs {
    border-bottom: none;
  }

  .nav-tabs .nav-link {
    border: none !important;
    color: #555;
    font-weight: 500;
  }

  .nav-tabs .nav-link.active {
    border-bottom: 2px solid #000 !important;
    color: #000;
  }

  .card-preview {
    background-color: #000;
    border-radius: 14px;
    color: #fff;
    padding: 20px 25px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 380px;
  }

  .card-preview .chip {
    width: 32px;
    margin-bottom: 20px;
  }

  .card-preview .card-number {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .card-preview .cardholder {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .mastercard-logo {
    width: 40px;
    float: right;
    margin-top: -40px;
  }

  .form-control {
    border-radius: 6px;
    height: 45px;
  }

  .form-check-input:checked {
    background-color: #2e9f42;
    border-color: #2e9f42;
  }

.btn-outline {
    border: 1px solid #2e9f42 !important;
    color: #2e9f42;
    border-radius: 6px;
    padding: 10px 35px;
}

.btn-outline:hover {
    background-color: #2e9f42 !important;
    color: white !important;
}

.btn-pay {
    background-color: #2e9f42 !important;
    color: #fff;
    border-radius: 6px;
    padding: 10px 35px;
    border: none;
}

.btn-pay:hover {
    background-color: #248534 !important;
}



  @media (max-width: 576px) {
    .card-preview {
      margin: auto;
    }

    .btn-group {
      flex-direction: column;
    }

    .btn-group .btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }


  /* ---------------------------------signup--------- */
  body {
    background-color: #f9f9ff;
  font-family: 'Segoe UI', sans-serif;
}
.signup-wrapper {
    max-width: 550px;
    margin: 50px auto;
    padding: 20px;
    width: 100%; /* ✅ Add this */
  }

  @media (max-width: 574px) {
    .signup-wrapper {
      width: 400px !important;
      margin: 20px 10px;  /* ✅ Reduce margin */
      padding: 10px;
    }
  }

  @media (max-width: 395px) {
    .signup-wrapper {
      width: 370px !important;
      margin: 20px 10px;  /* ✅ Reduce margin */
      padding: 10px;
    }
  }


  .signup-title {
    font-size: 1.8rem;
    font-weight: 600;
  }

  .text-welcome {
    color: #4c5eff;
    font-size: 0.95rem;
  }

  .social-btn {
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    background-color: #fff;
    cursor: pointer;
  }

  .social-btn:hover {
    background-color: #f9f9f9;
  }

  .form-control {
    border: none;
    border-bottom: 1px solid #bdbdbd;
    border-radius: 0;
    padding-left: 0;
    box-shadow: none !important;
    background-color: transparent;
  }

  .form-control:focus {
    border-color: #6c63ff;
    outline: none;
    background-color: transparent;

  }

  .form-label {
    font-size: 0.85rem;
    margin-bottom: 2px;
    color: #777;
  }

  .checkbox-custom {
    accent-color: #4caf50;
  }

  .btn-primary {
    background: linear-gradient(to right, #2663ff, #6a6aff);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(38, 99, 255, 0.3);
  }

  .btn-primary:hover {
    background: linear-gradient(to right, #1f55e4, #5a5af0);
  }

  .toggle-password {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 38px;
  }

  .form-group {
    position: relative;
    margin-bottom: 24px;
  }

  .custom-link {
    text-decoration: none;
    font-weight: bold;
    color: #000;
  }

  .custom-link:hover {
    text-decoration: underline;
  }



  @media (max-width: 576px) {
    .signup-wrapper {
      margin: 30px 20px;
    }

    .social-btn {
      font-size: 0.85rem;
      padding: 7px 10px;
    }
  }

