
        /* Typography */
        .heading {
            font-weight: 600;
            font-size: 24px;
            color: #1252c9;
            line-height: 23px;
        }

        .body-text {
            font-size: 13.5px;
            font-weight: 400;
            color: #616168;
        }

        .title-small {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        /* Colors */
        .primary-color { color: #0066CC; }
        .error-color { color: #D32F2F; }
        .success-color { color: #388E3C; }

        /* Modal Base */
        .modal1 {
            max-width: 550px;
            background: rgb(245 246 249);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            padding: 24px;
            margin: 20px auto;
            position: relative;
                padding-bottom: 40px;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-top: 0;
            background: rgb(245 246 249);
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #666;
            padding: 4px;
            width: 28px;
            height: 28px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* .close-btn:hover {
            background-color: #f0f0f0;
        } */

        .close-btn:focus {
            outline: 2px solid #0066CC;
            outline-offset: 2px;
        }

        /* Form Elements */
        .form-group {
            margin-bottom: 16px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 600;
            color: #000;
        }

        .form-input {
            width: 100%;
            height: 36px;
            border: 1px solid #CCCCCC;
            border-radius: 4px;
            padding: 0 12px;
            font-size: 14px;
            transition: border-color 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: #0066CC;
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
        }

        .form-input:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* OTP Input Styles */
        .otp-container {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .otp-input, .otp-input1, .otp-input2,.mobile-otp-input,.mobile-otp-input1 {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 18px;
            font-weight: 600;
            border: 1px solid #fff !important;
            border-radius: 8px;
            transition: border-color 0.2s;
        }
        .modal-header{    
            padding: 0px 0px;
        }
        
        button.close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            border: 1px solid #000;
            background-color: #1252c9;
            width: 10px;
            height: 10px;
            padding: 10px;
            border-radius: 10pc;
            color: #fff;
        }

        .otp-input:focus,.mobile-otp-input:focus {
            border-color: #4f93d6;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
        }

        .otp-input.filled,.mobile-otp-input.filled {
            border-color: #a5c9ed;
            background-color: #f8f9ff;
        }

        /* Radio Buttons */
        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            transition: all 0.2s;
            position: relative;
            background: #fff;
        }

        .radio-option:hover {
            background-color: #f8f9ff;
            border-color: #0066CC;
        }

        .radio-option.selected {
            background-color: #f8f9ff;
            border-color: #0066CC;
        }

        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #0066CC;
        }

        .radio-option-content {
            flex: 1;
        }

        .radio-option-title {
            font-size: 18px;
            font-weight: 600;
            color: #000;
        }

        .radio-option-description {
            font-size: 14px;
            color: #616168;
        }

        .recommended-badge {
            background-color: #388E3C;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 500;
            position: absolute;
            top: -1px;
            right: -1px;
        }

        /* Frequency Radio Buttons */
        .frequency-radio-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            background: #fff;
            border-radius: 6px;
            padding: 5px;
        }

        .frequency-radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .frequency-radio-option:hover {
            background-color: #f8f9ff;
        }

        .frequency-radio-option input[type="radio"] {
            width: 16px;
            height: 16px;
            accent-color: #0066CC;
        }

        .frequency-radio-option label {
            font-size: 14px;
            color: #333;
            cursor: pointer;
        }

        /* Buttons */
        .btn {
            min-height: 40px;
            padding: 0 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

         .btn-primaryy {
                background-color: #616168 !important;
                color: #fff;
        } 

        .btn-primary:hover:not(:disabled) {
            background-color: #0052a3;
        }

        .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-secondary {
            background-color: transparent;
            color: #0066CC;
            border: 1px solid #0066CC;
        }

        /* .btn-secondary:hover:not(:disabled) {
            background-color: #f8f9ff;
        } */

        .btn-link {
            background: none;
            color: #0066CC;
            text-decoration: none;
            border: none;
            font-size: 14px;
            cursor: pointer;
            padding: 4px;
            font-weight: bold;
        }

        .btn-link:hover {
            text-decoration: underline;
        }

        .btn-link:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Layout */
        .form-actions {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .form-actions .btn {
            flex: 1;
        }

        .form-actions-single {
            margin-top: 24px;
        }

        .form-actions-single .btn {
            width: 100%;
        }

        .registered-mobile {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px;
            background-color: #f8f9fa;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .mobile-info {
            flex: 1;
        }

        .mobile-number {
            font-weight: 500;
            color: #333;
        }

        .not-registered {
            color: #666;
            font-style: italic;
        }

        .update-btn {
            background: none;
            border: none;
            color: #ff6a00;
            text-decoration: underline;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
        }

        .resend-info {
            text-align: center;
            margin-top: 16px;
            font-size: 14px;
            color: #666;
        }

        .error-message {
            color: #D32F2F;
            font-size: 12px;
            margin-top: 4px;
        }

        /* Alert Messages */
        .alert1 {
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 16px;
            font-size: 14px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .alert1.warning {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            color: #856404;
        }

        .alert1.info {
            background-color: #d1ecf1;
            border: 1px solid #bee5eb;
            color: #0c5460;
        }

        .alert-icon {
            font-size: 16px;
            margin-top: 1px;
        }

        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            max-width: 400px;
            padding: 16px;
            border-radius: 8px;
            color: white;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            animation: slideIn 0.3s ease;
        }

        .toast.success {
            background-color: #388E3C;
        }

        .toast.error {
            background-color: #D32F2F;
        }

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

        /* Screen containers */
        .screen {
            display: none;
        }

        .screen.active {
            display: block;
        }

        /* Demo navigation (hidden in production) */
        .demo-info {
            text-align: center;
            margin-bottom: 20px;
            padding: 16px;
            background-color: #e3f2fd;
            border-radius: 8px;
            color: #1565c0;
            font-size: 14px;
        }
        
        .w20 {
            width: 20%; 
            float: left;margin-right: 3%;
        }
        .w35 {
            width: 30%; 
            float: left;margin-right: 3%;
        }
        .w60 {
            width: 60%; 
            float: left;margin-right: 3%;
        }
        
        .w75 {
            width: 75%; 
            float: left;
        }
        
        .mobile-number-text {    
            border: 1px solid #2d117b;
            border-radius: 6px;
            height: 40px;    font-size: 16px;
            padding: 6px;
            color: #000;
        }
        #qrcode img{width: 200px;}
        .w850{max-width: 850px;}
        .w850 .radio-group{    display: block;}
        .w850 .radio-option{    width: 48%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;}

    .changepass-cnt{margin-bottom: 0px}
    .applogodiv img{width: 125px;}

    @media only screen and (max-width: 767px) {
        .w850 .radio-option{    width: 100%;}
        .modal1{padding-bottom: 75px;}
        .radio-option{    padding: 23px 10px;}
        .modal1 .btn,.modal1 .btn-secondary{    text-transform: capitalize;min-width: 135px;    padding: 0 6px;font-size: 10px;}
        .registered-mobile.input-first-opt{    display: block;}
        .registered-mobile.input-first-opt .mobile-info{    width: 100%;float: left;}
        .registered-mobile.input-opt .select2parentelemforcons.w20,.registered-mobile.input-first-opt .select2parentelemforcons.w20{    width: 40% !important;float: left;}
        .registered-mobile.input-opt .phone-input.w75.mobile-number-text,.registered-mobile.input-first-opt .phone-input.w80.mobile-number-text{width: 55% !important;float: left;}
        #other_whatsapp_mobileNumber1_err{width: 100%;float: left;}
        .modal-content.otpblock{width: 100% !important;}
        .otp-input, .otp-input1, .otp-input2,.mobile-otp-input, .mobile-otp-input1{    width: 40px;height: 40px;}
        #other_whatsapp_mobileNumber_err{    width: 100%;float: left;}
        .heading {font-size: 20px;}
    }