/* Custom CSS for Kashflow Application */
/* Always use Bootstrap classes first, then add custom styles as needed */

/* Customer Topbar Icons Styling */
.navbar-nav .nav-item {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
}

.navbar-nav .nav-item a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    text-decoration: none !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    /*background: transparent !important;
    border: none !important;*/
}

.navbar-nav .nav-item a:hover {
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Clean icon styling */
.navbar-nav .nav-item i {
    /*color: #ffffff !important;*/
    font-size: 1.1rem !important;
    font-weight: normal !important;
}

/* Copy icon styling */
.navbar-nav .nav-item #copy-registration-link {
    background: rgba(23, 162, 184, 0.1) !important;
    border: 1px solid rgba(23, 162, 184, 0.3) !important;
}

.navbar-nav .nav-item #copy-registration-link:hover {
    background: rgba(23, 162, 184, 0.2) !important;
    border-color: rgba(23, 162, 184, 0.5) !important;
}

.navbar-nav .nav-item #copy-registration-link i {
    color: #17a2b8 !important;
}

/* WhatsApp icon styling */
.navbar-nav .nav-item #whatsapp-share-link {
    background: rgba(37, 211, 102, 0.1) !important;
    border: 1px solid rgba(37, 211, 102, 0.3) !important;
}

.navbar-nav .nav-item #whatsapp-share-link:hover {
    background: rgba(37, 211, 102, 0.2) !important;
    border-color: rgba(37, 211, 102, 0.5) !important;
}

.navbar-nav .nav-item #whatsapp-share-link i {
    color: #25D366 !important;
}

/* Notification badge styling */
.navbar-nav .nav-item .badge {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background-color: #dc3545 !important;
    color: white !important;
    border-radius: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    min-width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 6px !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* User profile styling */
.navbar-nav .nav-item .user-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.navbar-nav .nav-item .avatar-circle {
    width: 32px !important;
    height: 32px !important;
    background: #007bff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 14px !important;
}

/* Dropdown toggle styling */
.navbar-nav .nav-item .dropdown-toggle {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}







/* Country flag styles */
.country-flag {
    display: inline-block;
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #007bff, #0056b3);
}

/* Registration form enhancements */
.registration-form {
    /* Use Bootstrap classes: .card, .card-body, .form-group, etc. */
}

/* Registration Page - Remove Scrollbars */
.auth-wrapper {
    overflow: hidden;
}

.auth-wrapper::-webkit-scrollbar {
    display: none;
}

.auth-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Remove scrollbars from body on registration page */

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Remove scrollbars from html element */

html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Form alignment fixes for registration page */
.auth-content .form-control {
    height: 50px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-content .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Input group alignment */
.auth-content .input-group {
    height: 50px;
    width: 100%;
}

.auth-content .input-group-text {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-weight: 600;
    color: #495057;
    padding: 0.75rem 1rem;
    min-width: 60px;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-content .input-group .form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
    height: 50px;
    flex: 1;
    width: 100%;
}

.auth-content .input-group .form-control:focus {
    border-left: none;
}

/* Select2 alignment */
.auth-content .select2-container {
    height: 50px !important;
}

.auth-content .select2-container .select2-selection--single {
    height: 50px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
}

.auth-content .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 34px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.auth-content .select2-container .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    top: 2px !important;
}

.auth-content .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

/* Signup image alignment */
.signup-image-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

.signup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100vh;
}

/* Ensure both columns have equal height */
.auth-content .row {
    min-height: 100vh;
}

.auth-content .col-md-6 {
    min-height: 100vh;
}

.auth-content .card-body {
    display: flex;
    flex-direction: column;
}

/* Upgrade Modal Styles */
.upgrade-modal .modal-dialog {
    max-width: 900px;
}

/* Override Bootstrap card styles for package cards in modal */
#upgradeModalData .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
    padding: 10px;
}

#upgradeModalData .package-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

#upgradeModalData .package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
}

#upgradeModalData .package-card.selected {
    border-color: #28a745;
    background: linear-gradient(145deg, #f8fff9, #e8f5e8);
    box-shadow: 0 12px 24px rgba(40, 167, 69, 0.2), 0 4px 8px rgba(40, 167, 69, 0.1);
    transform: translateY(-4px) scale(1.01);
}

#upgradeModalData .package-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
    animation: checkmarkPulse 0.6s ease-out;
}

@keyframes checkmarkPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#upgradeModalData .package-card .card-header {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#upgradeModalData .package-price h2 {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

#upgradeModalData .package-fee h4 {
    font-size: 24px;
    font-weight: 600;
}

#upgradeModalData .upgrade-btn {
    transition: all 0.3s ease;
    font-weight: bold;
    padding: 12px;
}

#upgradeModalData .upgrade-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.upgrade-modal .current-package {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.upgrade-modal .current-package h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.upgrade-modal .modal-upgrade-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.upgrade-modal .modal-upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.upgrade-modal .modal-upgrade-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.upgrade-modal .not-eligible {
    text-align: center;
    padding: 2rem;
}

.upgrade-modal .not-eligible .alert {
    border-left: 4px solid #ffc107;
}
.row.align-items-stretch > .col-md-6 {
    display: flex;
    flex-direction: column;
}

/* Select2 customizations */
.select2-container {
    /* Bootstrap integration - use .form-control equivalent styling */
}

/* Mobile code display */
#mobilecodedisplay {
    /* Use Bootstrap text utilities: .text-muted, .small, etc. */
    font-weight: 500;
}

/* Form validation styles */
.has-error .form-control {
    /* Use Bootstrap validation classes: .is-invalid, .is-valid */
}

/* Custom button styles */
.btn-custom {
    /* Extend Bootstrap button classes: .btn, .btn-primary, etc. */
}

/* Responsive utilities */
@media (max-width: 768px) {
    .country-flag {
        width: 18px;
        height: 12px;
        font-size: 9px;
        line-height: 12px;
    }
}
.card {
    border: 1px solid #e3e6f0;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.card-header {
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
    padding: 0.75rem 1.25rem;
}

.card-body {
    padding: 1.25rem;
}

.stat-item {
    padding: 1rem;
}

.stat-item h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.badge {
    font-size: 0.75em;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.activity-list {
    margin-top: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item i {
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .d-grid {
        gap: 0.5rem !important;
    }
}

/* Level Team Styles */
.level-section {
    border-left: 4px solid #007bff;
    padding-left: 15px;
    margin-bottom: 20px;
}

.level-section[data-level="1"] { border-left-color: #007bff; }
.level-section[data-level="2"] { border-left-color: #28a745; }
.level-section[data-level="3"] { border-left-color: #ffc107; }
.level-section[data-level="4"] { border-left-color: #dc3545; }
.level-section[data-level="5"] { border-left-color: #6f42c1; }
.level-section[data-level="6"] { border-left-color: #fd7e14; }
.level-section[data-level="7"] { border-left-color: #20c997; }
.level-section[data-level="8"] { border-left-color: #e83e8c; }
.level-section[data-level="9"] { border-left-color: #6c757d; }
.level-section[data-level="10"] { border-left-color: #343a40; }

.level-header {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.level-title {
    margin: 0;
    color: #495057;
    font-size: 1.1rem;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Button Styles */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Table Styles */
.table th {
    background-color: #f8f9fa;
    border-top: none;
    font-weight: 600;
    color: #495057;
}

.table td {
    vertical-align: middle;
}

/* Badge Styles */
.badge {
    font-size: 0.75em;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
}

.auth-content .card-header {
    background-color: white;
}
/* .field-register-form-mobile_no{
    display: contents;
} */
.btn-secondary{
    color: white;
}

/* Airspace Login Design Styles */
.kashflow-login-wrapper {
    height: 100vh;
    background: #ffffff;
}

.kashflow-login-container {
    height: 100vh;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.registration-page .kashflow-form-container {
    max-width: 100%;
}
/*.kashflow-login-container .row {
    height: 100vh;
    margin: 0;
}
*/
/* Left Section Styles */
.kashflow-left-section {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    min-height: 100vh;
}

.kashflow-form-container {
    width: 100%;
    max-width: 400px
}
.field-country-select .select2-container{
    margin-top: 15px;
}
.kashflow-header {
    margin-bottom: 20px;
}

.kashflow-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.cloud-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    position: relative;
}

.cloud-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.kashflow-text {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Form Styles */
.kashflow-form {
    width: 100%;
}

.kashflow-field-group {
    margin-bottom: 10px;
}

.kashflow-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.kashflow-input-group {
    position: relative;
    display: flex;
    align-items: center;
    height: 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.kashflow-input-group:focus-within {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.kashflow-input-group.has-error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.kashflow-input-group.has-success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.kashflow-input-icon {
    position: absolute;
    left: 16px;
    color: #6c757d;
    z-index: 2;
    pointer-events: none;
}

.kashflow-input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 18px 16px 0 48px;
    font-size: 16px;
    color: #1a1a1a;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.kashflow-input:focus {
    padding: -1px;
}
.kashflow-input:not(:placeholder-shown) {
    padding: -1px;
}
.kashflow-input::placeholder {
    color: #6c757d;
}

.kashflow-password-toggle {
    position: absolute;
    right: 16px;
    color: #6c757d;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.kashflow-password-toggle:hover {
    color: #007bff;
}

/* Checkbox Styles */
.kashflow-checkbox-group {
    margin-bottom: 5px;
}

.kashflow-checkbox {
    display: flex;
    align-items: center;
    /*margin-bottom: 8px;*/
}

.kashflow-checkbox-input {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: #007bff;
}

.kashflow-checkbox-label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.kashflow-checkbox-text {
    font-size: 12px;
    color: #6c757d;
    margin-left: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Sign In Button */
.kashflow-signin-btn {
    width: 100%;
    height: 45px;
    background: #007bff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.kashflow-signin-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.kashflow-signin-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* AJAX Loading State */
.kashflow-signin-btn.loading {
    position: relative;
    color: transparent;
}

.kashflow-signin-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Dektrium Validation Error Styles */
.kashflow-field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    line-height: 1.4;
    min-height: 16px;
}

/* Ensure error messages are visible */
.kashflow-field-group .kashflow-field-error {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.kashflow-field-group.has-error .kashflow-input-group {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.kashflow-field-group.has-error .kashflow-input-icon {
    color: #dc3545;
}

.kashflow-field-group.has-success .kashflow-input-group {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.kashflow-field-group.has-success .kashflow-input-icon {
    color: #28a745;
}

/* Separator */
.kashflow-separator {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.kashflow-separator-line {
    flex: 1;
    height: 1px;
    background: #e9ecef;
}

.kashflow-separator-text {
    padding: 0 16px;
    font-size: 14px;
    color: #6c757d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Sign Up Link */
.kashflow-signup-link {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.kashflow-signup-text {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

.kashflow-signup-text:hover {
    text-decoration: underline;
}

/* Social Login Buttons */
.kashflow-social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.kashflow-social-btn {
    width: 100%;
    height: 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.kashflow-google-btn {
    color: #1a1a1a;
}

.kashflow-google-btn:hover {
    border-color: #4285f4;
    background: #f8f9fa;
}

.kashflow-facebook-btn {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.kashflow-facebook-btn:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.kashflow-apple-btn {
    background: #000000;
    border-color: #000000;
    color: white;
}

.kashflow-apple-btn:hover {
    background: #333333;
    border-color: #333333;
}

/* Copyright */
.kashflow-copyright {
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 0;
}

/* Right Section Styles */
.kashflow-right-section {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.kashflow-promo-container {
    width: 100%;
    max-width: 500px;
    text-align: left;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.kashflow-promo-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: left;
    max-width: 100%;
}

.kashflow-highlight {
    color: #007bff;
}

.kashflow-cloud-character {
    margin-bottom: 40px;
    text-align: center;
}

.kashflow-character-img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

/* Background Elements */
.kashflow-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.kashflow-document-outline {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80px;
    height: 100px;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
}

.kashflow-document-outline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #e9ecef;
}

.kashflow-document-outline::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #e9ecef;
}

.kashflow-swirl-lines {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.kashflow-swirl-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,20 Q30,10 40,20 Q50,30 60,20 Q70,10 80,20' stroke='%23007bff' stroke-width='2' fill='none'/%3E%3Cpath d='M20,40 Q30,30 40,40 Q50,50 60,40 Q70,30 80,40' stroke='%23007bff' stroke-width='2' fill='none'/%3E%3Cpath d='M20,60 Q30,50 40,60 Q50,70 60,60 Q70,50 80,60' stroke='%23007bff' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kashflow-left-section {
        padding: 40px 20px;
    }
    
    .kashflow-right-section {
        display: none;
    }
    
    .kashflow-left-section {
        width: 100%;
        flex: 1;
    }
    
    .kashflow-form-container {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    
    .kashflow-left-section {
        min-height: 100vh;
        width: 100%;
        padding: 20px 15px;
    }
    
    .kashflow-right-section {
        display: none;
    }
    
    .kashflow-form-container {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
}
.form-group{
    width: 100%;
    height: 100%;
}
.customer-auth-login .form-group, .registration-page .form-group{
    margin-bottom: 15px;
    width: 100%;
    height: 60px;
}


/* Chrome / Edge / Safari (WebKit) autofill overrides */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  /* Replace background with an inset box-shadow */
  -webkit-box-shadow: 0 0 0 1000px var(--input-bg) inset !important;
  box-shadow: 0 0 0 1000px var(--input-bg) inset !important;

  /* Text color for the autofilled value */
  -webkit-text-fill-color: var(--input-text) !important;

  /* Prevent the yellow flash on some browsers */
  transition: background-color 5000s ease-in-out 0s;
  padding-top: 0px;
  
}

/* When autofilled and focused */
input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--input-bg) inset !important;
  box-shadow: 0 0 0 1000px var(--input-bg) inset !important;
  -webkit-text-fill-color: var(--input-text) !important;
}

/* Information Slider Styles */
.info-slider-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.info-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slider-item.active {
    opacity: 1;
    transform: translateX(0);
}

.slider-content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 100%;
}

.slider-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-item.active .slider-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-text {
    flex: 1;
    min-width: 0;
}

.slider-text h6 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.slider-text p {
    margin: 0;
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.4;
    font-weight: 400;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #007bff;
    border-color: #007bff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(0, 123, 255, 0.7);
    border-color: rgba(0, 123, 255, 0.7);
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .info-slider-container {
        height: 180px;
    }
    
    .slider-content {
        gap: 12px;
        padding: 15px;
    }
    
    .slider-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-text h6 {
        font-size: 14px;
    }
    
    .slider-text p {
        font-size: 13px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Registration Form Mobile Code Styles */
.kashflow-mobile-code {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.kashflow-field-group .kashflow-input-group .kashflow-input {
    padding-left: 80px;
}

/* Select2 styling for registration form */
.kashflow-field-group .select2-container {
    width: 100% !important;
}

.kashflow-field-group .select2-container .select2-selection--single {
    height: 45px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    padding: 0 !important;
}

.kashflow-field-group .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 41px !important;
    padding-left: 48px !important;
    padding-right: 30px !important;
    color: #1a1a1a !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.kashflow-field-group .select2-container .select2-selection--single .select2-selection__arrow {
    height: 41px !important;
    top: 2px !important;
    right: 8px !important;
}

.kashflow-field-group .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #007bff !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1) !important;
}

.kashflow-field-group .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #007bff !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1) !important;
}

/* Select2 dropdown styling */
.kashflow-field-group .select2-dropdown {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.kashflow-field-group .select2-results__option {
    padding: 8px 12px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.kashflow-field-group .select2-results__option--highlighted {
    background-color: #007bff !important;
    color: white !important;
}

/* Four Row Layout for Registration Form */
.kashflow-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.kashflow-form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Single Column Row (for Referral Code) */
.kashflow-form-row-single {
    display: flex;
    justify-content: center;
}

.kashflow-form-column-full {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsive Design for Four Row Layout */
@media (max-width: 768px) {
    .kashflow-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .kashflow-form-column {
        gap: 20px;
    }
    
    .kashflow-form-column-full {
        max-width: 100%;
    }
    
    .kashflow-form-row-single {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .kashflow-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .kashflow-form-column {
        gap: 20px;
    }
    
    .kashflow-form-column-full {
        max-width: 100%;
    }
    
    .kashflow-form-row-single {
        justify-content: flex-start;
    }
    
    .kashflow-form-container {
        max-width: 100%;
        padding: 20px;
    }
}

/* Clean Topbar Icons Styling - Matching Image Design */
.navbar-nav .nav-item {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
}

.navbar-nav .nav-item a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    text-decoration: none !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    /*background: transparent !important;
    border: none !important;*/
}

.navbar-nav .nav-item a:hover {
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.activity-notification-topbar .activity-bell{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: #ffc8c3 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(23, 162, 184, 0.3) !important;
    color: #ff6454 !important;
}
.activity-bell i{
    color: #ff6454 !important;
}
/* Clean icon styling */
.navbar-nav .nav-item i {
    /*color: #ffffff !important;*/
    font-size: 1.1rem !important;
    font-weight: normal !important;
}

/* Notification icon specific styling */
.navbar-nav .nav-item .dropdown-toggle {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.navbar-nav .nav-item .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Notification badge styling - matching image */
.navbar-nav .nav-item .badge {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background-color: #dc3545 !important;
    color: white !important;
    border-radius: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    min-width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 6px !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* Copy icon styling */
.navbar-nav .nav-item #copy-registration-link {
    background: rgba(23, 162, 184, 0.1) !important;
    border: 1px solid rgba(23, 162, 184, 0.3) !important;
}

.navbar-nav .nav-item #copy-registration-link:hover {
    background: rgba(23, 162, 184, 0.2) !important;
    border-color: rgba(23, 162, 184, 0.5) !important;
}

.navbar-nav .nav-item #copy-registration-link i {
    color: #17a2b8 !important;
}

/* WhatsApp icon styling */
.navbar-nav .nav-item #whatsapp-share-link {
    background: rgba(37, 211, 102, 0.1) !important;
    border: 1px solid rgba(37, 211, 102, 0.3) !important;
}

.navbar-nav .nav-item #whatsapp-share-link:hover {
    background: rgba(37, 211, 102, 0.2) !important;
    border-color: rgba(37, 211, 102, 0.5) !important;
}

.navbar-nav .nav-item #whatsapp-share-link i {
    color: #25D366 !important;
}

/* User profile styling */
.navbar-nav .nav-item .user-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.navbar-nav .nav-item .avatar-circle {
    width: 32px !important;
    height: 32px !important;
    background: #007bff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 14px !important;
}

/* Dropdown toggle styling */
.navbar-nav .nav-item .dropdown-toggle {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Toast notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-notification {
    animation: slideInRight 0.3s ease-out;
}

.toast-notification.fade-out {
    animation: slideOutRight 0.3s ease-out;
}

/* Responsive adjustments for share icons */
@media (max-width: 768px) {
    .badge {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .dropdown-menu {
        font-size: 14px;
    }
}

/* Copy Toast Notification Styling */
.copy-toast {
    position: absolute !important;
    z-index: 9999 !important;
    pointer-events: none !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 500 !important;
    text-align: center !important;
    white-space: nowrap !important;
    user-select: none !important;
    animation: copyToastSlideIn 0.3s ease-out !important;
}

.copy-toast-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.copy-toast-error {
    background: linear-gradient(135deg, #dc3545, #e74c3c) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

@keyframes copyToastSlideIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes copyToastSlideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.9);
    }
}
#register-form-mobile_no{
    padding-top:-1px;
    padding-left: 110px;
}
.upgrade-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background-color: #fff0b3 !important;
    border: 1px solid rgba(23, 162, 184, 0.3) !important;
    color: #a89e46 !important;
}