 body,
 html {
     height: 100%;
     margin: 0;
     font-family: "Poppins", sans-serif;
     background: #f4f5f9;
 }

 .login-container {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 15px;
 }

 .login-card {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
     padding: 30px 25px;
     max-width: 430px;
     width: 100%;
     border: 1px solid #dedede;
 }
 .chosen-single span{
    height:42px;
    line-height:38px;
 }
 .chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    font-size:14px;
    height: 42px;
    border: 1px solid #aaa;
    border-radius: 5px;
    background-color: #fff;
    background:none !important;
    background: none !important;
    background-clip: none !important;
    -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
    box-shadow: none !important;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    /* line-height: 24px; */
}

 .form-control:focus {
     color: var(--bs-body-color);
     background-color: var(--bs-body-bg);
     border-color: none;
     outline: 0;
     box-shadow: none;
 }
 .chosen-single{
   height: 42px;
    font-size: 14px; 
 }

 .login-card img {
     display: block;
     margin: 0 auto 20px;
     width: 80px;

 }

 .login-card h3 {
     text-align: center;
     margin-bottom: 25px;
     font-weight: 600;
     color: #1E293B;
     font-size:22px;
 }

 .form-check-label {
     font-size: 13px;
     color: #555;
 }

 .form-label {

     font-size: 15px;
     font-weight: 500;
 }


 .btn-get-otp {
     background-color: #36CAA8;
     border: none;
     color: #fff;
     font-weight: 500;
     padding: 10px;
     width: 100%;
     border-radius: 6px;
     font-size: 14px;
 }

 .btn-get-otp:hover {
     background-color: #2aa98c;
     border: none;
     color: #fff;
     font-weight: 500;
     padding: 10px;
     width: 100%;
     border-radius: 6px;
 }

 .resend-code {
     font-size: 13px;
     color: #475569;
     text-align: center;
     margin-top: 15px;
 }

 .resend-code a {
     text-decoration: none;
     margin-left: 5px;
 }

 input::placeholder {
     color: gray;
     font-size: 14px;

     opacity: 1;
 }

 .form-control {
     font-size: 14px;
     height: 42px;
     border: 1px solid #D9D9D9;
 }

 .form-select {
     font-size: 14px;
     height: 42px;
 }

 .error {
     color: red;
 }



 /* OTP SCREEN */
 .otp-container {
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .otp-card {
     background: #fff;
     width: 100%;
     max-width: 420px;
     padding: 30px 25px;
     border-radius: 12px;
     box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
     text-align: center;
 }

 .otp-logo {
     width: 90px;
     margin-bottom: 15px;
 }

 .otp-title {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .otp-info-title {
     font-weight: 600;
     margin-bottom: 5px;
 }

 .otp-text {
     font-size: 14px;
     color: #606060;
 }

 .otp-input {
     width: 45px;
     height: 50px;
     text-align: center;
     font-size: 20px;
     border: 1px solid #ddd;
     border-radius: 8px;
     margin: 8px;
     outline: none;
     transition: 0.2s;
 }

 .otp-input:focus {
     border-color: #6a1b9a;
     box-shadow: 0 0 4px rgba(106, 27, 154, 0.4);
 }

 .btn-verify {
     width: 100%;
     background: #36CAA8;
     color: #fff;
     border: none;
     padding: 10px;
     border-radius: 8px;
     margin-top: 20px;
     font-size: 14px;
     font-weight: 600;
 }

 .select-card {
     border: 1px solid #dddddd;
 }



 .select-container {
     min-height: 90vh;
     display: flex;
     justify-content: center;
     align-items: center;
     background: #f3f4f7;
     padding: 20px;
 }


 .select-card {
     background: #fff;
     width: 100%;
     max-width: 50%;
     padding: 40px;
     border-radius: 15px;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
 }


 .category-box {
     border: 1px solid #dcdcdc;
     border-radius: 12px;
     padding: 20px 10px;

     text-align: center;
     transition: 0.3s;
     cursor: pointer;
 }

 .category-box p {
     margin-top: 12px;
     font-size: 15px;
     font-weight: 600;
     color: #888;
 }


 .category-box.active {
     border-color: #36CAA8;
     background: #e9fff8;
 }

 .category-box.active p {
     color: #36CAA8;
 }


 .cat-img {
     width: 42px;
     height: 42px;
     opacity: 0.6;
     transition: 0.2s;
 }

 .category-box.active .cat-img {
     opacity: 1;
 }


 .btn-verify-now {
     background: #36CAA8;
     color: #fff;
     padding: 10px 15px;
     border-radius: 8px;
     border: none;
     font-size: 13px;
     font-weight: 600;
     width: auto !important
 }

 .head-label {
     font-size: 24px;
     font-weight: 700;
     color: #3B4453;
     display: inline-block;
     position: relative;
 }

 .sub-head-label {
     position: absolute;
     bottom: -4px;
     left: 50%;
     transform: translateX(-50%);
     width: 60%;
     height: 3px;
     background: linear-gradient(90deg, #2ec4b6, #32d9a5);
     border-radius: 2px;
 }

 /* select Category */



 /* subscription */

 .subscription-wrapper {

     margin: auto;
     padding: 10px;
 }

 /* Card Style */
 .plan-card {
     background: #fff;
     border: 2px solid #e6e6e6;
     border-radius: 14px;
     padding: 18px 20px;
     margin-bottom: 18px;
     position: relative;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
     transition: 0.3s;
     min-height: 250px;
 }
 .plan-name{
  width: 160px;  
 }

 .plan-card.active {
     border: 2px solid #21cba7;
     background: #f3fffb;
 }

 .plan-card.popular {
     background: #f8f3ff;
     border: 2px solid #915aff;
 }

 /* Popular Badge */
 .badge {
     background: #915aff;
     color: #fff;
     font-size: 10px;
     padding: 4px 10px;
     border-radius: 20px;
     width: max-content;
     margin-bottom: 10px;
     top: 10px;
     position: absolute;
     left: 17px;
 }

 /* Header */
 .plan-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 10px;
 }

 .plan-name {
    font-size: 16px;
    font-weight: 700;
    color: #3b4453;
 }

 /* Colors */
 .silver {
     color: #1abc9c;
 }

 .gold {
     color: #d4a434;
 }

 .diamond {
     color: #4aa8ff;
 }

 .president {
     color: #5c3fe6;
 }

 .top {
     color: #1d8eff;
 }

 /* Checkmark */
 .plan-check i {
     font-size: 22px;
     color: #1abc9c;
 }

 .plan-check.inactive {
     width: 22px;
     height: 22px;
     border-radius: 50%;
     border: 2px solid #bbb;
 }

 /* Price */
 .plan-price {
     margin-top: 10px;
     font-size: 20px;
     font-weight: 700;
     color: #3B4453;

 }

 .plan-price span {
     font-size: 13px;
     color: #666;
 }

 .old-price {
     text-decoration: line-through;
     color: #888;
     font-size: 13px;
     display: block;
 }

 /* Features */
 .plan-features {
     list-style: none;
     padding-left: 0;
     margin-top: 12px;
 }

 .plan-features li {
     font-size: 15px;
     margin-bottom: 6px;
     padding-left: 25px;
     position: relative;
 }

 .plan-features li::before {
     content: "✔";
     position: absolute;
     left: 0;
     color: #21cba7;
     font-weight: bold;
 }

 /* Pay button */
 .pay-btn {
     width: auto;
     background: #21cba7;
     border: none;
     padding: 10px 18px;
     color: white;
     font-size: 14px;
     border-radius: 8px;
     margin-top: 10px;
     transition: 0.3s;
     font-weight: 600;
 }

 .pay-btn:hover {
     background: #17a389;
 }


 /* subscription confirm */
 .container-confirm {
     font-family: "Poppins", sans-serif;
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 90vh;
     margin: 0;
     padding: 20px;
     background: #f5f6fa;
 }

 .confirm-card {
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     max-width: 500px;
     width: 100%;
     padding: 35px 30px;
     border: 1px solid #dddddd;
     position: relative;

 }


 .confirm-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 20px;
     background: linear-gradient(270deg, #52338A 0%, #36CAA8 100%);
     border-top-left-radius: 20px;
     border-top-right-radius: 20px;
 }

 .confirm-card h2 {
     text-align: center;
     margin-bottom: 20px;
     color: #3B4453;
     font-weight: 700;
     font-size: 20px;
     margin-top: 10px;
 }

 .plan-header-confirm {
     text-align: center;
     margin-bottom: 25px;
 }

 .plan-header-confirm i {
     font-size: 2.2rem;
     color: #513a8c;
 }

 .plan-title {
     font-size: 1.2rem;
     font-weight: 600;
     color: #3B4453;
     margin-top: 5px;
 }

 .plan-price {
     font-size: 18px;
     font-weight: 600;
     color: #513a8c;
     margin-top: 0px;
 }

 .plan-details {
     display: grid;
     gap: 12px;
     margin: 25px 0;
     padding: 0;
     list-style: none;
 }

 .plan-details li {
     background: #f9f9f9;
     border-radius: 12px;
     padding: 10px 15px;
     display: flex;
     align-items: center;
     gap: 10px;
     color: #333;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
     transition: 0.3s ease;
     border: 1px solid #dddddd;
 }

 .plan-details li:hover {
     transform: translateX(5px);
     background: linear-gradient(270deg, #52338abd 0%, #36caa85c 100%);
 }

 .plan-details i {
     font-size: 1.2rem;
     color: #50398b;
     background: #f9f9f9;
     padding: 8px;
     border-radius: 10px;
     width: 36px;
     text-align: center;
 }

 .divider {
     height: 1px;
     background: #ddd;
     margin: 25px 0;
 }

 .summary {
     display: grid;
     gap: 10px;
     color: #444;
     font-size: 0.95rem;
 }

 .summary p {
     background: #f9f9f9;
     border-radius: 10px;
     padding: 15px 12px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
     border: 1px solid #dddddd;
     margin: 0;
 }

 .summary strong {
     color: #3B4453;
 }

 .subscribe-btn {
     display: inline-block;
     background: #36CAA8;
     color: #fff;
     font-weight: 600;
     padding: 14px;
     border-radius: 35px;
     margin-top: 25px;
     text-decoration: none;
     font-size: 14px;
     transition: all 0.3s ease;
     text-align: center;
 }

 .subscribe-btn:hover {
     background: linear-gradient(270deg, #52338A 0%, #36CAA8 100%);
     transform: translateY(-3px);
 }


 /* thank you */
 .thank-container {
     font-family: "Poppins", sans-serif;
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 90vh;
     margin: 0;
     padding: 20px;
     background: #f5f6fa;
 }

 .payment-thank-card {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     max-width: 500px;
     width: 100%;
     padding: 40px 30px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     text-align: center;
     position: relative;
     border: 1px solid #dddddd;

 }



 .payment-thank-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 20px;
     background: linear-gradient(270deg, #52338A 0%, #36CAA8 100%);
     border-top-left-radius: 20px;
     border-top-right-radius: 20px;
 }

 .payment-thank-icon {
     font-size: 3rem;
     color: #36CAA8;
     margin-bottom: 15px;
 }

 .thank-container h2 {
     font-weight: 700;
     margin-top: 15px;
     color: #3B4453;
     font-size: 22px;
 }

 .thank-container p {
     color: #3B4453;
     margin-bottom: 25px;
     font-size: 13px;
 }

 .payment-thank-summary {
     display: grid;
     gap: 12px;
     margin-bottom: 25px;
     text-align: left;

 }

 .payment-thank-summary p {
     background: #f9f9f9;
     border-radius: 10px;
     padding: 12px 15px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
     margin: 0;
     border: 1px solid #dddddd;
 }

 .payment-thank-summary strong {
     color: #3B4453;
 }
 .subscription-wrapper{
        min-height: 70vh;
    }
    .inactive .bi-check-circle-fill{
        display: none;
    }

 .payment-thank-invoice-btn {
     display: inline-block;
     background: #36CAA8;
     color: #fff;
     font-weight: 600;
     padding: 10px 25px;
     border-radius: 35px;
     text-decoration: none;
     font-size: 14px;

 }

 .signup-option {
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
}

.signup-option .signup-link {
    color: #1e293b;
    font-weight: 600;
    text-decoration: none;
}

.signup-option .signup-link:hover {
    text-decoration: underline;
}

.error {
    color: red;
    font-size:13px;
}
.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label {
    color: red;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: none !important;
}
#otp_error{
   font-size: 13px; 
       margin-bottom: 10px;
           color: red;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 411px) {
.otp-input {
width: 34px !important;
height: 38px !important;
margin: 3px;
}
}
