/*       body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf1 100%) !important;
    min-height: 100vh !important;
    padding: 20px;
    height: auto !important;
}*/
p.lead {
    color: #6b7280;
    font-size: 18px;
}

.form-container.registration-form {
    margin: 0 auto;
}
section.my-section-1.register-user-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf1 100%) !important;
    min-height: 100vh !important;
    align-items: center;
    padding: 20px;
    height: auto !important;
}

.form-container {
    width: 100%;
    max-width: 1400px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    animation: containerSlide 0.6s ease-out forwards;
}

@keyframes containerSlide {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-container.registration-form .form-header {
    padding: 30px 15px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1b6dba;
    transform: scaleX(0);
    transform-origin: left;
    animation: headerLine 1s ease-out 0.3s forwards;
}

@keyframes headerLine {
    to {
        transform: scaleX(1);
    }
}

.form-container.registration-form h1 {
    color: #2c2c2c;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 30px;
    opacity: 0;
    animation: fadeUp 0.5s ease-out 0.4s forwards;
}
.progress-container {
    margin-top: 20px;
    opacity: 0;
    animation: fadeUp 0.5s ease-out 0.6s forwards;
}

.progress-bar {
    height: 8px;
    background-color: rgba(74, 108, 247, 0.2);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #6c8aff 100%);
    border-radius: 4px;
    width: 25%;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(-45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent);
    background-size: 20px 20px;
    animation: moveStripes 1s linear infinite;
    border-radius: 4px;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 0;
    }
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

.registration-form .step-label {
    font-size: 14px;
    color: #2c2c2c;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.step.active .step-number {
    background: #1b6dba;
    color: white;
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
    transform: scale(1.1);
}

.step.completed .step-number {
    background: #129b4b;
    color: #fff;
    border-color: #10c65c;
}

.form-content {
    padding: 40px;
    position: relative;
}

.form-step {
    animation: stepEnter 0.6s ease-out forwards;
    display: none;
}

.form-step.active {
    display: block;
}

@keyframes stepEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container.registration-form h2 {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.form-container.registration-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #1b6dba;
    border-radius: 3px;
}

.plans-container {
    overflow-x: auto;
    padding-top: 40px;
    /* margin: 30px 0; */
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 1000px;
}

.plans-table th,
.plans-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.plans-table thead th {
    font-size: 1.1rem;
    padding: 20px 15px;
}

.plans-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.plans-table tbody tr:hover {
    background-color: #f3f4f6;
}

.plans-table .category-row {
    background-color: #e5e7eb !important;
    font-weight: 600;
    text-align: left;
    font-size: 1.1rem;
}

.plans-table .feature-name {
    text-align: left;
    font-weight: 500;
    background-color: #f9fafb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.heading-contact-info {
    justify-content: space-between;
}

.form-check.heading-checkbox input.form-check-input {
    width: auto;
    border-radius: 4px !important;
    margin-right: 10px;
    height: 11px !important;
}

.form-check.heading-checkbox span {
    margin-top: 27px !important;
    font-size: 13px;
    color: #2c2c2c;
    font-weight: 400;
}

.form-container.registration-form label {
    display: block;
/*    margin-bottom: 8px;*/
    color: #2c2c2c;
    font-weight: 400;
    font-size: 0.95rem;
}

.input-with-icon {
    position: relative;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"],
.registration-form input[type="password"],
.registration-form select,
.registration-form input,
.registration-form textarea {
    width: 100%;
    padding: 10px 10px 10px 10px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* textarea {
        min-height: 120px;
        resize: vertical;
    }*/

input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.15);
}

.terms {
    margin-top: 20px;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}
.form-container.form-container.registration-form.Reregistration-heading h2::after {
    left: 11px;
}

.smartaddon-forms {
    max-width: 1247px;
    margin: 0 auto;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.form-navigation button , button#dashboardBtn {
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-prev {
    background: white;
    color: #1b6dba;
    border: 2px solid #1b6dba !important;
}

.btn-next:hover, .btn-submit:hover {
    background-color: #1b6dba;
    color: #fff;
}
.btn-prev:hover {
    background: white;
    color: #1b6dba;
    border: 2px solid #1b6dba;
}

.btn-next,
.btn-submit {
    background-color: #1b6dba;
    border-radius: 14px;
    /* padding: 9px 35px; */
    font-weight: 600;
    font-size: 17px;
    color: white;
    /*    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);*/
    box-shadow: 0 5px 15px rgb(74 108 247 / 0%);
}

.input-with-icon.input-wrapper {
    position: relative;
    width: 100%;
}

.input-with-icon.input-wrapper {
    position: relative;
    width: 100%;
}
button.send-otp-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    background-color: #1b6dba;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit {
    background-color: #1b6dba;
    box-shadow: 0 5px 15px rgba(16, 198, 92, 0.3);
}

.success-message {
    padding: 40px 20px;
    animation: successAppear 0.8s ease-out forwards;
}

@keyframes successAppear {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
button#dashboardBtn {
    margin: 0 auto;
 }

.success-icon {
    width: 80px;
    height: 80px;
    background: #1b6dba;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    animation: iconScale 0.5s ease-out 0.5s both;
}

@keyframes iconScale {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.success-message h2 {
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 0;
}

.success-message h2::after {
    display: none;
}

.success-message p {
    line-height: 1.6;
    margin-bottom: 25px;
}

.plans-table th {
    vertical-align: top;
    padding-top: 20px;
}

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px;
    margin-bottom: 40px;
}

.plan-card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ddd;
    position: relative;
}

.plan-card.popular {
    border: 2px solid #1b6dba;
}

.plan-card h3 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.plan-card p {
    font-size: 14px;
    color: #666;
}

.price {
    font-size: 32px;
    font-weight: bold;
    margin: 20px 0 5px;
}

.price span {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.plans-container .btn {
    display: inline-block;
    margin-top: 15px;
    background: #1b6dba;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
}

.plan-title {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Comparison Table */
table.plans-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0px;
}
table.plans-table thead th {
    text-align: center;
    padding: 14px;
    background: #fafafa;
    border-bottom: 2px solid #ddd;
    color: #000;
}

table.plans-table tbody td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

table.plans-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

td.check {
    color: #27ae60;
    font-size: 16px;
    font-weight: bold;
}

tr.category-row td {
    padding: 15px;
    text-align: center;
}
.pricing-toggle {
    display: inline-flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-toggle input {
    display: none;
}

.pricing-toggle label {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    background: #f5f5f5;
    transition: all 0.3s ease;
    user-select: none;
    margin-bottom: 0;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #1b6dba;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-toggle label:first-of-type {
    border-right: 1px solid #ddd;
}
.pricing-toggle input:checked + label {
    background: #fff;
    color: #000;
    font-weight: 600;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.15);
}
.plans-container {
    overflow-x: auto;
/*    margin: 30px 0;*/
    border-radius: 10px;
}
.plans-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 1000px;
}

.payment-container {
    max-width: 50%;
    margin: 0 auto;
}

.payment-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stripe-header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 7px;
    border-bottom: 1px solid #e2e8f0;
}

.stripe-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.stripe-badge {
    background: #1b6dba;
    color: white;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0px;
}

.stripe-badge i {
    font-size: 1.2rem;
}

.payment-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.card-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.card-form {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pay-now-btn {
    width: 100%;
    background: #1b6dba;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button.btn.btn-next {
    border: 1px solid !important;
}

.account-settings .card-footer a.btn {
    border: 1px solid #e5e7eb !important;
    font-weight: 400;
}
.account-settings .card-footer a.btn.btn-primary , button.btn.billing-btn {
    background: #1b6dba;
    color: #fff;
}
.account-settings {
    display: flex;
    /* max-width: 1200px; */
    margin: 0px auto 100px 25px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 100% !important;
    max-width: 98% !important;
    border: 1px solid #0420451a;
    padding-left: 0 !important;
}

.sidebar .nav-section {
    /*    display: flex;
    gap: 24px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);*/
/*    width: 280px;
    padding: 25px 0;
    color: #2c3e50;
    border-right: 1px solid #5a8bcb1a;
    background-color: #f2f3f5;*/
}

.accountprofile h2.page-title {
    font-size: 24px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0px;
}
.input-with-btn {
    display: flex;
    align-items: center;
    position: relative;
}
button.btn-change {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 12px;
    background: #1b6dba;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
}

.container-fluid.accountprofile {
    /*    max-width: 90%;*/
    /*    margin-top: 25px;*/
    margin-bottom: 25px;
}
.accountprofile p {
    color: #7f8c8d;
    font-size: 16px;
}

/*.account-settings .nav-section {
    margin-bottom: 25px;
}*/

.account-settings .nav-section-title {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #95a5a6;
    padding: 0 25px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.account-settings .nav-item {
    /*    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 6px;
    font-size: 15px;
    font-weight: 500;*/
    padding: 12px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.account-settings .nav-item:hover {
    background: #066fd10a;
}

.account-settings .nav-item.active , .nav-item.active a {
/*    border-left: 4px solid #1b6dba;*/
    background: #1b6dba !important;
    color: #fff !important;
/*    border-bottom: 1px solid #1b6dba !important;
    color: #1b6dba !important;
    font-size: 15px;
    font-weight: 500;*/
}

.account-settings .nav-item i {
    margin-right: 12px;
    font-size: 14px;
    width: 24px;
    text-align: center;
}

/* Main Content */
.account-settings .main-content {
    flex: 1;
    padding: 14px 14px;
}
thead.thead-light {
    background: #f6f8fb;
}

.account-settings .content-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.account-settings .content-header p {
    color: #7f8c8d;
    font-size: 16px;
}

.account-settings .settings-card {
    background: white;
    border-radius: 10px;
    padding: 5px 0;
    /*  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);*/
}

.account-settings .settings-card h2 , .content-header h2 {
   font-size: 16px;
    color: #2c3e50;
    margin-bottom: 6px;
    padding-bottom: 15px;
    font-weight: 600;
}

.account-settings .form-group {
    margin-bottom: 4px;
}

.account-settings .form-group label {
    margin-bottom: 6px;
    color: #182433;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.account-settings .form-control {
    /*    padding: 12px 10px;
    border: 1px solid #dce4ec;
    border-radius: 6px;
    transition: border 0.3s ease;*/
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dce4ec;
    border-radius: 6px;
    font-size: 14px;
    transition: border 0.3s ease;
}

.account-settings .form-control:focus {
    outline: none;
    border-color: #1b6dba;
    box-shadow: 0 0 0 3px rgba(75, 192, 192, 0.2);
}

.account-settings .avatar-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.account-settings .avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #1b6dba;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 600;
    margin-right: 20px;
}

.account-settings .btn {
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.account-settings .application-setting-container.clients-main {
    width: 100%;
    max-width: 100%;
}

.account-settings .btn-primary {
    background: #4bc0c0;
    color: white;
}

.account-settings .btn-outline {
    background: transparent;
    border: 1px solid #1b6dba;
    color: #1b6dba;
    margin-right: 10px;
    font-size: 13px;
    padding: 7px 8px;
    font-weight: 500;
}

.account-settings .btn-outline:hover {
    background: #1b6dba;
    color: white;
}
button.btn.btn-outline.delete-btn {
    border: 1px solid #d95656;
    color: #d95656;
}

.account-settings .btn-link {
    color: #1b6dba;
    background: none;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.account-settings .btn-link:hover {
    color: #2980b9;
}

.account-settings .info-text {
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 5px;
}

.account-settings .business-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-toggle .form-check {
    padding-left: 0;
}
.pricing-toggle .form-check {
    margin-bottom: 0;
}

.account-settings .business-item {
    flex: 1;
    min-width: 250px;
}
.logo.logo-register {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.form-navigation {
/*    padding: 0px 0px 40px 40px;*/
}

/*.form-container.registration-form input#email {
    border: none;
}*/

.account-settings .toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.account-settings .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.account-settings .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.account-settings .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.account-settings input:checked + .slider {
    background-color: #1b6dba;
}
button.btn.btn-outline.delete-btn:hover {
    background: transparent;
}
button.change-password {
    background-color: #1b6dba;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    /* width: 100%; */
    transition: background-color 0.3s;
}

.account-settings input:checked + .slider:before {
    transform: translateX(30px);
}

.account-settings .toggle-label {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Notification styles */
.account-settings .notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eaeff2;
}

button.btn.add-key-button {
    padding: 7px 14px;
    font-size: 15px;
}

.account-settings .notification-item:last-child {
    border-bottom: none;
}

.toggle-otp-modal button.btn.btn-outline-primary , .delete-otp-modal button.btn.btn-outline-primary {
    background-color: #fff5e6;
    color: #ff9800;
    border: 1px solid #ff9800;
}

.toggle-otp-modal button.btn.btn-primary {
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
}

.account-settings .notification-info {
    flex: 1;
}

.account-settings .notification-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.account-settings .notification-desc {
    color: #7f8c8d;
    font-size: 14px;
}

/* Connected apps styles */
.account-settings .app-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #eaeff2;
    border-radius: 8px;
    margin-bottom: 15px;
}

.account-settings .app-icon {
    width: 50px;
    height: 50px;
    background: #f5f7f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    color: #4bc0c0;
}

.account-settings .app-info {
    flex: 1;
}

.account-settings .app-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.account-settings .app-status {
    font-size: 14px;
    color: #7f8c8d;
}

/* Billing styles */

.account-settings .status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status.paid {
    background: #e7f7f7;
    color: #4bc0c0;
}

.status.pending {
    background: #fef5e7;
    color: #f39c12;
}
.main-content.application-app-setting h2 {
    padding-top: 10px;
    font-size: 21px;
    font-weight: 500;
}
/* Feedback styles */
.account-settings textarea {
    width: 100%;
    min-height: 150px;
    padding: 15px;
    border: 1px solid #dce4ec;
    border-radius: 6px;
    font-size: 16px;
    resize: vertical;
}
.account-settings .card-footer .btn {
    padding: 10px 31px;
    /* min-width: 100px; */
    height: 44px;
}

/*.time-zone {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    width: 98% !important;
    margin: 0 auto;
    margin-top: 29px !important;
}*/
.table-user-style td:nth-child(4) {
    max-width: 213px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.form-navigation.register-contact button.btn.btn-next {
    right: 0;
    position: absolute;
}

.form-navigation.register-contact button.btn.btn-next.next-button-conatct {
    right: 0;
    position: absolute;
}

div#formStep1 .input-with-icon.input-wrapper {
    border: none;
}



/* Responsive FOR Account settings */
@media (max-width: 992px) {
    .account-settings {
        flex-direction: column;
        margin: 15px;
    }

    .account-settings .sidebar {
        width: 100% !important;
        padding: 15px;
    }

    .account-settings .nav-items {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .account-settings .nav-item {
        padding: 10px 15px;
        border-radius: 6px;
    }

    .account-settings .nav-item.active {
        border-left: none;
        background: rgba(255, 255, 255, 0.2);
    }
}
/* Responsive FOR Account settings */    

/* Responsive Design */
@media (max-width: 968px) {
    .payment-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
   
    .payment-summary {
        order: 2;
    }
   
    .payment-section {
        order: 1;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 20px;
    }

    .business-profile {
        flex-direction: column;
    }

    .avatar-container {
        align-items: baseline;
    }

    .avatar {
        margin-bottom: 15px;
    }

    .notification-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .notification-item .toggle-switch {
        margin-top: 10px;
    }
    .account-settings .avatar-container {
        margin-bottom: 0px;
    }
    .account-settings .main-content {
        padding: 14px 18px;
    }
    .account-settings .business-profile {
        gap: 10px;
    }
    .account-settings.profile-settings .sidebar .nav-section {
        display: flex;
        gap: 16px;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
   
    .payment-card {
        padding: 15px;
    }
   
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* card payemnt end css*/
@media (max-width: 1200px) {
    .form-container {
        width: 95%;
    }
    .create-packet-link a.btn.btn-create {
        width: fit-content !important;
        padding: 10px 10px;
        border-radius: 6px;
    }
}

@media (max-width: 1024px) {
    .account-settings {
        width: 100% !important;
        max-width: 100% !important;
    }
/*    .account-settings .main-content {
        padding: 14px 5px;
    }*/

}

@media (max-width: 992px) {
    .form-container {
        width: 100%;
    }

    .form-header {
        padding: 25px;
    }

    .form-content {
        padding: 25px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .steps {
        gap: 10px;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    .register-user-section .form-navigation {
        flex-direction: row;
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .plans-table th,
    .plans-table td {
        padding: 10px 8px;
    }
    .account-settings {
        width: 100% !important;
    }
            
}

.card {
    overflow: visible !important;
}

